vanvught / GD32F107RC-Bootloader-TFTP

Bootloader with TFTP Server

Home Page:https://www.gd32-dmx.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub C++ Standard GitHub issues GitHub contributors GitHub Sponsors Main

PayPal.Me Donate

GD32F107RC Bootloader TFTP

This bootloader will install your application by means of the TFTP protocol. There is no need to change your application code. Per default DHCP is used for obtaining the ip-address.

The bootloader is active during reset of the board:

Otherwise the bootloader will directly jump to your application. With the snippet:

    	// 8. Call the reset handler
    	const uint32_t* reset_p = (uint32_t *)(FLASH_BASE + OFFSET_UIMAGE + 4);
    	asm volatile ("bx %0;" : : "r"(*reset_p));

The bootloader can be installed with the tools supplied by GigaDevice: http://www.gd32mcu.com/en/download/7?kw=GD32F1

The limitation for the firmware file to be uploaded is given by the RAM available. For example, the MCU on https://github.com/vanvught/GD32FxxxR-dev-board is the GD32F107RCT6. With the 96K RAM we have the firmware file size limit of 74K.

See also https://www.gd32-dmx.org/bootloader.html

File: spiflashinstall.h

# if defined (BOARD_GD32F107R)
#  define OFFSET_UIMAGE		0x007000		// 28K
#  define FIRMWARE_MAX_SIZE (74 * 1024)		// 74K

The change to be made in your build configuration is in the file gd32f107rc_flash.ld.

/* Specify the memory areas */
MEMORY
{
  FLASH (rx)      : ORIGIN = 0x08007000, LENGTH = 74K
  RAM (xrw)       : ORIGIN = 0x20000000, LENGTH = 96K
}

The FLASH ORIGIN must match the OFFSET_UIMAGE from the bootloader file spiflashinstall.h

The code for the bootloader is a fork from https://github.com/vanvught/rpidmx512. In order to reduce the memory footprint, some functions are not available.

About

Bootloader with TFTP Server

https://www.gd32-dmx.org

License:MIT License


Languages

Language:C 67.5%Language:C++ 31.2%Language:Makefile 0.6%Language:Assembly 0.6%Language:Shell 0.1%