├── .gitignore ├── LICENSE ├── README.md ├── examples ├── TMC5160_Config_Wizard │ └── TMC5160_Config_Wizard.ino ├── TMC5160_SPI │ └── TMC5160_SPI.ino └── TMC5160_UART │ └── TMC5160_UART.ino ├── library.json ├── library.properties └── src ├── Bitfield.h ├── TMC5160.cpp ├── TMC5160.h ├── TMC5160_SPI.cpp ├── TMC5160_UART.cpp └── TMC5160_registers.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/README.md -------------------------------------------------------------------------------- /examples/TMC5160_Config_Wizard/TMC5160_Config_Wizard.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/examples/TMC5160_Config_Wizard/TMC5160_Config_Wizard.ino -------------------------------------------------------------------------------- /examples/TMC5160_SPI/TMC5160_SPI.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/examples/TMC5160_SPI/TMC5160_SPI.ino -------------------------------------------------------------------------------- /examples/TMC5160_UART/TMC5160_UART.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/examples/TMC5160_UART/TMC5160_UART.ino -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/library.properties -------------------------------------------------------------------------------- /src/Bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/src/Bitfield.h -------------------------------------------------------------------------------- /src/TMC5160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/src/TMC5160.cpp -------------------------------------------------------------------------------- /src/TMC5160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/src/TMC5160.h -------------------------------------------------------------------------------- /src/TMC5160_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/src/TMC5160_SPI.cpp -------------------------------------------------------------------------------- /src/TMC5160_UART.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/src/TMC5160_UART.cpp -------------------------------------------------------------------------------- /src/TMC5160_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommag/TMC5160_Arduino/HEAD/src/TMC5160_registers.h --------------------------------------------------------------------------------