├── .gitignore ├── .gitmodules ├── LM4F.ld ├── LM4F_startup.c ├── License.txt ├── Makefile ├── README.markdown ├── bitflags.rs ├── gpio.rs ├── led_driver.rs ├── main.rs ├── main_old.c ├── oocd.cfg ├── runtime.rs ├── sysctl.rs ├── systick.rs └── thumbv7em-none-eabi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/.gitmodules -------------------------------------------------------------------------------- /LM4F.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/LM4F.ld -------------------------------------------------------------------------------- /LM4F_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/LM4F_startup.c -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/License.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/Makefile -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/README.markdown -------------------------------------------------------------------------------- /bitflags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/bitflags.rs -------------------------------------------------------------------------------- /gpio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/gpio.rs -------------------------------------------------------------------------------- /led_driver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/led_driver.rs -------------------------------------------------------------------------------- /main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/main.rs -------------------------------------------------------------------------------- /main_old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/main_old.c -------------------------------------------------------------------------------- /oocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/oocd.cfg -------------------------------------------------------------------------------- /runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/runtime.rs -------------------------------------------------------------------------------- /sysctl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/sysctl.rs -------------------------------------------------------------------------------- /systick.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/systick.rs -------------------------------------------------------------------------------- /thumbv7em-none-eabi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoinealb/rust-demo-cortex-m4/HEAD/thumbv7em-none-eabi --------------------------------------------------------------------------------