├── .github ├── scripts │ └── motor_database_validator.py └── workflows │ └── lint.yml ├── .gitignore ├── LICENSE ├── README.md ├── autotune_tmc.py ├── docs └── example.cfg ├── install.sh ├── motor_constants.py └── motor_database.cfg /.github/scripts/motor_database_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcgr/klipper_tmc_autotune/HEAD/.github/scripts/motor_database_validator.py -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcgr/klipper_tmc_autotune/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcgr/klipper_tmc_autotune/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcgr/klipper_tmc_autotune/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcgr/klipper_tmc_autotune/HEAD/README.md -------------------------------------------------------------------------------- /autotune_tmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcgr/klipper_tmc_autotune/HEAD/autotune_tmc.py -------------------------------------------------------------------------------- /docs/example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcgr/klipper_tmc_autotune/HEAD/docs/example.cfg -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcgr/klipper_tmc_autotune/HEAD/install.sh -------------------------------------------------------------------------------- /motor_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcgr/klipper_tmc_autotune/HEAD/motor_constants.py -------------------------------------------------------------------------------- /motor_database.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmcgr/klipper_tmc_autotune/HEAD/motor_database.cfg --------------------------------------------------------------------------------