├── .gitattributes ├── .gitignore ├── Hardware ├── L6470 AutoDriver.brd └── L6470 AutoDriver.sch ├── LICENSE.md ├── Libraries ├── Arduino │ ├── .gitignore │ ├── README.md │ ├── examples │ │ ├── SparkFunGetSetParamTest │ │ │ └── SparkFunGetSetParamTest.ino │ │ ├── SparkFunLibraryTest │ │ │ ├── SparkFunLibraryTest.ino │ │ │ ├── SparkFunnotes.h │ │ │ ├── SparkFunsupportFunctions.ino │ │ │ └── SparkFunwantYouGone.ino │ │ ├── SparkFundSPINexample │ │ │ ├── SparkFunL6470.h │ │ │ ├── SparkFundSPINcommands.ino │ │ │ ├── SparkFundSPINexample.ino │ │ │ └── SparkFundSPINsupport.ino │ │ └── gantry │ │ │ └── gantry.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── .vimproject │ │ ├── SparkFunAutoDriver.cpp │ │ ├── SparkFunAutoDriver.h │ │ ├── SparkFunAutoDriverCommands.cpp │ │ ├── SparkFunAutoDriverConfig.cpp │ │ ├── SparkFunAutoDriverSupport.cpp │ │ └── SparkFundSPINConstants.h └── README.md ├── Production └── L6470AutoDriver-Panel_v13.brd └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/.gitignore -------------------------------------------------------------------------------- /Hardware/L6470 AutoDriver.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Hardware/L6470 AutoDriver.brd -------------------------------------------------------------------------------- /Hardware/L6470 AutoDriver.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Hardware/L6470 AutoDriver.sch -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Libraries/Arduino/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/.gitignore -------------------------------------------------------------------------------- /Libraries/Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/README.md -------------------------------------------------------------------------------- /Libraries/Arduino/examples/SparkFunGetSetParamTest/SparkFunGetSetParamTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/examples/SparkFunGetSetParamTest/SparkFunGetSetParamTest.ino -------------------------------------------------------------------------------- /Libraries/Arduino/examples/SparkFunLibraryTest/SparkFunLibraryTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/examples/SparkFunLibraryTest/SparkFunLibraryTest.ino -------------------------------------------------------------------------------- /Libraries/Arduino/examples/SparkFunLibraryTest/SparkFunnotes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/examples/SparkFunLibraryTest/SparkFunnotes.h -------------------------------------------------------------------------------- /Libraries/Arduino/examples/SparkFunLibraryTest/SparkFunsupportFunctions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/examples/SparkFunLibraryTest/SparkFunsupportFunctions.ino -------------------------------------------------------------------------------- /Libraries/Arduino/examples/SparkFunLibraryTest/SparkFunwantYouGone.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/examples/SparkFunLibraryTest/SparkFunwantYouGone.ino -------------------------------------------------------------------------------- /Libraries/Arduino/examples/SparkFundSPINexample/SparkFunL6470.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/examples/SparkFundSPINexample/SparkFunL6470.h -------------------------------------------------------------------------------- /Libraries/Arduino/examples/SparkFundSPINexample/SparkFundSPINcommands.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/examples/SparkFundSPINexample/SparkFundSPINcommands.ino -------------------------------------------------------------------------------- /Libraries/Arduino/examples/SparkFundSPINexample/SparkFundSPINexample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/examples/SparkFundSPINexample/SparkFundSPINexample.ino -------------------------------------------------------------------------------- /Libraries/Arduino/examples/SparkFundSPINexample/SparkFundSPINsupport.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/examples/SparkFundSPINexample/SparkFundSPINsupport.ino -------------------------------------------------------------------------------- /Libraries/Arduino/examples/gantry/gantry.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/examples/gantry/gantry.ino -------------------------------------------------------------------------------- /Libraries/Arduino/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/keywords.txt -------------------------------------------------------------------------------- /Libraries/Arduino/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/library.properties -------------------------------------------------------------------------------- /Libraries/Arduino/src/.vimproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/src/.vimproject -------------------------------------------------------------------------------- /Libraries/Arduino/src/SparkFunAutoDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/src/SparkFunAutoDriver.cpp -------------------------------------------------------------------------------- /Libraries/Arduino/src/SparkFunAutoDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/src/SparkFunAutoDriver.h -------------------------------------------------------------------------------- /Libraries/Arduino/src/SparkFunAutoDriverCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/src/SparkFunAutoDriverCommands.cpp -------------------------------------------------------------------------------- /Libraries/Arduino/src/SparkFunAutoDriverConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/src/SparkFunAutoDriverConfig.cpp -------------------------------------------------------------------------------- /Libraries/Arduino/src/SparkFunAutoDriverSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/src/SparkFunAutoDriverSupport.cpp -------------------------------------------------------------------------------- /Libraries/Arduino/src/SparkFundSPINConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/Arduino/src/SparkFundSPINConstants.h -------------------------------------------------------------------------------- /Libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Libraries/README.md -------------------------------------------------------------------------------- /Production/L6470AutoDriver-Panel_v13.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/Production/L6470AutoDriver-Panel_v13.brd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/L6470-AutoDriver/HEAD/README.md --------------------------------------------------------------------------------