rusefi/firmware/bootloader
Scott Smith 1fe26f55fb
Expose console over serial port for H7 proc (#3578)
This way you can use the console/TunerStudio with the ST-Link

In the process, combine TS_PRIMARY_UART and TS_PRIMARY_SERIAL into TS_PRIMARY_PORT, to make UART vs
SERIAL selection more robus.  Ditto for TS_SECONDARY_*.  Also change use of TS_NO_PRIMARY to be #if
not #ifdef, so that it can be properly set as a compile flag and not be overwritten by various
header files.
2021-11-20 00:39:08 -05:00
..
prometheus naming convention 2019-03-29 11:24:25 -04:00
src Expose console over serial port for H7 proc (#3578) 2021-11-20 00:39:08 -05:00
!clean_bootloader.bat Convert integration_and_primary_bundle scripts to sh (#1562) 2020-07-03 11:03:50 -04:00
!compile_bootloader.bat Convert integration_and_primary_bundle scripts to sh (#1562) 2020-07-03 11:03:50 -04:00
!compile_bootloader_405.bat refactoring - nicer style 2021-10-08 23:14:11 -04:00
!compile_bootloader_469.bat Fix master (#1134) 2020-02-08 16:34:29 -05:00
!compile_bootloader_discovery407.bat Convert integration_and_primary_bundle scripts to sh (#1562) 2020-07-03 11:03:50 -04:00
STMFlashLoader_all_screenshots.png
bootloader.h code style 2020-04-01 19:00:56 -04:00
bootloader.mk UART DMA for "primary" connector #1528 2020-06-21 23:22:45 -04:00
bootloader_generated.hxx
bootloader_storage.c defined(__DOXYGEN__) ? fix #748 2019-04-12 22:10:57 -04:00
clean_bootloader.sh Switch to Bash (#1585) 2020-07-09 10:27:20 -04:00
compile_bootloader.sh set up precompiled header (#2971) 2021-07-25 21:23:23 -04:00
compile_bootloader_discovery407.sh Switch to Bash (#1585) 2020-07-09 10:27:20 -04:00
readme.md Update readme.md 2021-11-05 19:53:58 -04:00

readme.md

Bootloader

BIG OPEN QUESTION: do we need to merge this custom BL into OpenBLT? See https://github.com/rusefi/rusefi/wiki/Firmware-update-via-CAN

*** User Manual ***

To start the bootloader updater:

  • Turn off your rusEFI ECU board, and connect UART to PC.
  • Download "FLASHER-STM32" here: http://www.st.com/en/development-tools/flasher-stm32.html
  • Run "STMFlashLoader Demo", set COM-port parameters (the same as in TunerStudio).
  • Press the "Next" button.
  • Turn on the ECU board.
  • If the connection is successful, the next page of STMFlashLoader appears immediately. Press "Next" button again and follow the instructions.
  • You can use:
    • Upload from device (Flash Read) command;
    • Download to device (Flash Write) command;
    • Erase->Selection command (only Sector erase is currently supported, not Full Erase!).

To update the firmware:

  • choose "Download to device" mode;
  • select the firmware file (rusefi.hex). Note! Use only recent firmware builds with bootloader support!
  • you may select "verify" option to check
  • you may select "Jump to the user program" to automatically run the main firmware after the update.

image

!!! Note that the bootloader can update only the main firmware, but not itself !!!

Use this code on your own risk!

*** Developers Section ***

Problem statement:

  • UART + bluetooth bootloader for Prometheus board which does not have USB
  • future plan: firmware from SD card
  • future plan: some sort of settings reset mechanism

How it works, in two words:

  • The bootloader requires a separate makefile because it's a separate binary executable with its own project settings and fileset.
  • Start firmware/bootloader/compile_bootloader.bat to compile the bootloader code. Use it only if bootloader modification is required.
  • The compiled bootloader code is stored in bootloader/bootloader_generated.hxx and it can be included into the main firmware (build/rusefi.hex) if the bootloader support is enabled.
  • The bootloader support is disabled by default (USE_BOOTLOADER=no). You can enable it by adding "USE_BOOTLOADER=yes" to Makefile or "SET USE_BOOTLOADER=yes" to your Windows compile batch-file.
  • When USE_BOOTLOADER=yes, a special version of linker script is used: STM32F407xG_CCM_bootloader.ld. It shifts 'flash' memory address to 32kb (0x08008000), and clears a space for bootloader at the very beginning of the flash memory. It also adds section ".bl" for the bootloader code.
  • The file bootloader_storage.c used to include the bootloader code into the firmware (using '.bl' section).
  • In result, there are two binary executables combined in one firmware: the bootloader starts first, and the main firmware start afterwards.
  • All those can be overridden by board configs and makefiles - that's exactly how it's been compiled for Prometheus board.

The bootloader executable works as follows:

  • Init ChibiOS and UART/Serial driver using tunerstudio_io code;
  • Create a thread to listen to UART (thBootloaderSerial), using dfuStartLoop();
  • The PC 'stm32-flasher' software sends its request byte only once, so we don't wait for it - the bootloader sends an answer as soon as it starts (both the request & answer bytes are known consts);
  • If the next command doesn't come immediately (<100 ms), we abort the bootloader dfu loop and run the application code - calling dfuJumpToApp() in main().
  • Otherwise, if at least one command is received, we stay in the bootloader mode and process commands.