├── .gitignore ├── .gitmodules ├── README.md ├── document ├── GD32F103xxDatasheetRev2.2.pdf ├── GD32F10x_User_Manual_EN_V2.0.pdf ├── STM32F103_datasheet.pdf └── STM32F10x_reference_manual.pdf ├── scripts ├── black_magic_probe_debug.scr └── black_magic_probe_flash.scr └── source ├── Makefile.include ├── SPI-master-sinescroller ├── Makefile ├── SPI.c ├── SPI.ld ├── font.h ├── logo.h └── sine.h ├── SPI-master ├── Makefile ├── SPI.c ├── SPI.ld └── sine.h ├── UART ├── Makefile ├── UART.c └── UART.ld ├── blink ├── Makefile ├── blink.c └── blink.ld ├── gd32.c └── rules.mk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/README.md -------------------------------------------------------------------------------- /document/GD32F103xxDatasheetRev2.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/document/GD32F103xxDatasheetRev2.2.pdf -------------------------------------------------------------------------------- /document/GD32F10x_User_Manual_EN_V2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/document/GD32F10x_User_Manual_EN_V2.0.pdf -------------------------------------------------------------------------------- /document/STM32F103_datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/document/STM32F103_datasheet.pdf -------------------------------------------------------------------------------- /document/STM32F10x_reference_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/document/STM32F10x_reference_manual.pdf -------------------------------------------------------------------------------- /scripts/black_magic_probe_debug.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/scripts/black_magic_probe_debug.scr -------------------------------------------------------------------------------- /scripts/black_magic_probe_flash.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/scripts/black_magic_probe_flash.scr -------------------------------------------------------------------------------- /source/Makefile.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/Makefile.include -------------------------------------------------------------------------------- /source/SPI-master-sinescroller/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/SPI-master-sinescroller/Makefile -------------------------------------------------------------------------------- /source/SPI-master-sinescroller/SPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/SPI-master-sinescroller/SPI.c -------------------------------------------------------------------------------- /source/SPI-master-sinescroller/SPI.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/SPI-master-sinescroller/SPI.ld -------------------------------------------------------------------------------- /source/SPI-master-sinescroller/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/SPI-master-sinescroller/font.h -------------------------------------------------------------------------------- /source/SPI-master-sinescroller/logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/SPI-master-sinescroller/logo.h -------------------------------------------------------------------------------- /source/SPI-master-sinescroller/sine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/SPI-master-sinescroller/sine.h -------------------------------------------------------------------------------- /source/SPI-master/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/SPI-master/Makefile -------------------------------------------------------------------------------- /source/SPI-master/SPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/SPI-master/SPI.c -------------------------------------------------------------------------------- /source/SPI-master/SPI.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/SPI-master/SPI.ld -------------------------------------------------------------------------------- /source/SPI-master/sine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/SPI-master/sine.h -------------------------------------------------------------------------------- /source/UART/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/UART/Makefile -------------------------------------------------------------------------------- /source/UART/UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/UART/UART.c -------------------------------------------------------------------------------- /source/UART/UART.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/UART/UART.ld -------------------------------------------------------------------------------- /source/blink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/blink/Makefile -------------------------------------------------------------------------------- /source/blink/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/blink/blink.c -------------------------------------------------------------------------------- /source/blink/blink.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/blink/blink.ld -------------------------------------------------------------------------------- /source/gd32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/gd32.c -------------------------------------------------------------------------------- /source/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdprutser/GD32Challenge/HEAD/source/rules.mk --------------------------------------------------------------------------------