├── .gitignore ├── ODrive.m ├── README.md ├── TestODrive.slx ├── compile ├── include └── odrive.h └── src └── odrive.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa4cc/SimulinkOdrive/HEAD/.gitignore -------------------------------------------------------------------------------- /ODrive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa4cc/SimulinkOdrive/HEAD/ODrive.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa4cc/SimulinkOdrive/HEAD/README.md -------------------------------------------------------------------------------- /TestODrive.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa4cc/SimulinkOdrive/HEAD/TestODrive.slx -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa4cc/SimulinkOdrive/HEAD/compile -------------------------------------------------------------------------------- /include/odrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa4cc/SimulinkOdrive/HEAD/include/odrive.h -------------------------------------------------------------------------------- /src/odrive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa4cc/SimulinkOdrive/HEAD/src/odrive.c --------------------------------------------------------------------------------