vanvught / GD32F207RG-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

GD32F207RG 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 you 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=GD32F2

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 GD32F207RGT6. With the 256K RAM we have the firmware file size limit of 234K.

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

File: spiflashinstall.h

# elif defined (BOARD_GD32F207R)
#  define OFFSET_UIMAGE		0x008000		// 32K
#  define FIRMWARE_MAX_SIZE (234 * 1024)	// 234K

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

MEMORY
{
  FLASH (rx)      : ORIGIN = 0x08008000, LENGTH = 234K
  RAM (xrw)       : ORIGIN = 0x20000000, LENGTH = 256K
}

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 70.5%Language:C++ 28.2%Language:Assembly 0.7%Language:Makefile 0.6%Language:Shell 0.1%