├── .gitignore ├── LICENSE ├── MKL25Z4.h ├── Makefile ├── README.md ├── TODO ├── _startup.c ├── accel.c ├── common.h ├── delay.c ├── demo.c ├── freedom.h ├── mkl25z4.ld ├── ring.c ├── syscalls.c ├── tests.c ├── touch.c ├── uart.c ├── usb.c └── usb.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/LICENSE -------------------------------------------------------------------------------- /MKL25Z4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/MKL25Z4.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/TODO -------------------------------------------------------------------------------- /_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/_startup.c -------------------------------------------------------------------------------- /accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/accel.c -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/common.h -------------------------------------------------------------------------------- /delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/delay.c -------------------------------------------------------------------------------- /demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/demo.c -------------------------------------------------------------------------------- /freedom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/freedom.h -------------------------------------------------------------------------------- /mkl25z4.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/mkl25z4.ld -------------------------------------------------------------------------------- /ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/ring.c -------------------------------------------------------------------------------- /syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/syscalls.c -------------------------------------------------------------------------------- /tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/tests.c -------------------------------------------------------------------------------- /touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/touch.c -------------------------------------------------------------------------------- /uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/uart.c -------------------------------------------------------------------------------- /usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/usb.c -------------------------------------------------------------------------------- /usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payne92/bare-metal-arm/HEAD/usb.h --------------------------------------------------------------------------------