├── LICENSE ├── README.md ├── common ├── device_headers │ ├── gd32vf103.h │ ├── n200_eclic.h │ ├── n200_func.c │ ├── n200_func.h │ ├── n200_timer.h │ ├── riscv_bits.h │ ├── riscv_const.h │ └── riscv_encoding.h ├── gd32vf103xb.ld ├── gd32vf103xb_boot.S └── openocd │ ├── openocd_cmsis-dap.cfg │ └── openocd_ft2232.cfg ├── hello_display ├── Makefile └── main.c ├── hello_led ├── Makefile └── main.c ├── hello_riscv ├── Makefile └── main.c └── hello_systick ├── Makefile └── main.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/README.md -------------------------------------------------------------------------------- /common/device_headers/gd32vf103.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/device_headers/gd32vf103.h -------------------------------------------------------------------------------- /common/device_headers/n200_eclic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/device_headers/n200_eclic.h -------------------------------------------------------------------------------- /common/device_headers/n200_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/device_headers/n200_func.c -------------------------------------------------------------------------------- /common/device_headers/n200_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/device_headers/n200_func.h -------------------------------------------------------------------------------- /common/device_headers/n200_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/device_headers/n200_timer.h -------------------------------------------------------------------------------- /common/device_headers/riscv_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/device_headers/riscv_bits.h -------------------------------------------------------------------------------- /common/device_headers/riscv_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/device_headers/riscv_const.h -------------------------------------------------------------------------------- /common/device_headers/riscv_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/device_headers/riscv_encoding.h -------------------------------------------------------------------------------- /common/gd32vf103xb.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/gd32vf103xb.ld -------------------------------------------------------------------------------- /common/gd32vf103xb_boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/gd32vf103xb_boot.S -------------------------------------------------------------------------------- /common/openocd/openocd_cmsis-dap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/openocd/openocd_cmsis-dap.cfg -------------------------------------------------------------------------------- /common/openocd/openocd_ft2232.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/common/openocd/openocd_ft2232.cfg -------------------------------------------------------------------------------- /hello_display/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/hello_display/Makefile -------------------------------------------------------------------------------- /hello_display/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/hello_display/main.c -------------------------------------------------------------------------------- /hello_led/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/hello_led/Makefile -------------------------------------------------------------------------------- /hello_led/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/hello_led/main.c -------------------------------------------------------------------------------- /hello_riscv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/hello_riscv/Makefile -------------------------------------------------------------------------------- /hello_riscv/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/hello_riscv/main.c -------------------------------------------------------------------------------- /hello_systick/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/hello_systick/Makefile -------------------------------------------------------------------------------- /hello_systick/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WRansohoff/GD32VF103_templates/HEAD/hello_systick/main.c --------------------------------------------------------------------------------