├── .gitignore ├── BCM2835-ARM-Peripherals.pdf ├── README.md ├── Raspberry-Pi-R2.0-Schematics-Issue2.2_027.pdf ├── kernel.ld ├── makefile └── source ├── bootloader.s ├── gpio.c ├── gpio.h ├── main.c ├── spi.c ├── spi.h ├── utils.c └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/.gitignore -------------------------------------------------------------------------------- /BCM2835-ARM-Peripherals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/BCM2835-ARM-Peripherals.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/README.md -------------------------------------------------------------------------------- /Raspberry-Pi-R2.0-Schematics-Issue2.2_027.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/Raspberry-Pi-R2.0-Schematics-Issue2.2_027.pdf -------------------------------------------------------------------------------- /kernel.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/kernel.ld -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/makefile -------------------------------------------------------------------------------- /source/bootloader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/source/bootloader.s -------------------------------------------------------------------------------- /source/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/source/gpio.c -------------------------------------------------------------------------------- /source/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/source/gpio.h -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/source/main.c -------------------------------------------------------------------------------- /source/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/source/spi.c -------------------------------------------------------------------------------- /source/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/source/spi.h -------------------------------------------------------------------------------- /source/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/source/utils.c -------------------------------------------------------------------------------- /source/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/Raspberry-Pi-SPI-slave/HEAD/source/utils.h --------------------------------------------------------------------------------