ardupilot/Tools/AP_Bootloader
bugobliterator 95b69ba1fd AP_Bootloader: add board type CubeOrangePlus 2022-03-20 07:23:10 -07:00
..
AP_Bootloader.cpp AP_Bootloader: allow flash to be unprotected from the bootloader 2022-02-24 10:19:07 +11:00
README.md AP_Bootloader: added board_types.txt 2020-06-17 14:16:47 +10:00
app_comms.h AP_Bootloader: pre-define fields of app_descriptor 2019-10-28 15:53:16 +11:00
bl_protocol.cpp AP_Bootloader: allow external flash load in middle 2022-02-09 12:47:55 +00:00
bl_protocol.h Tools: AP_Bootloader: remove unused BL_WAIT_MAGIC define 2020-06-23 09:16:42 +10:00
board_types.txt AP_Bootloader: add board type CubeOrangePlus 2022-03-20 07:23:10 -07:00
can.cpp AP_Bootloader: add value for extra argument in encode methods 2022-03-11 18:13:54 +11:00
can.h AP_Bootloader: support firmware update from px4 firmware 2022-02-17 14:37:41 +11:00
mcu_f1.h AP_Bootloader: added CAN support for AP_Periph 2019-08-27 10:29:56 +10:00
mcu_f3.h AP_Bootloader: support STM32F303 MCU 2019-11-01 10:53:53 +11:00
mcu_f4.h AP_Bootloader: added flash size limiting on old CPUs 2018-06-25 21:22:31 +10:00
mcu_f7.h AP_Bootloader: added mcu files 2018-06-22 08:06:41 +10:00
mcu_g4.h AP_Bootloader: fixed G4 MCU descriptions 2021-07-30 10:20:52 +10:00
mcu_h7.h AP_Bootloader: added STM32H7xx chip revisions 2019-11-25 21:52:45 +11:00
mcu_l4.h AP_Bootloader: support L496 MCUs 2021-09-24 18:08:00 +10:00
support.cpp Tools: use correct #pragma GCC diagnostic pop 2021-09-29 17:27:29 +10:00
support.h AP_Bootloader: add support for flashing erasing and verifying ext flash 2021-09-01 17:10:53 +10:00
wscript Tools: make CPUInfo test fairer, add data for external flash 2022-02-09 12:47:55 +00:00

README.md

ArduPilot Bootloader

This is the bootloader used for STM32 boards for ArduPilot. To build the bootloader do this:

 ./waf configure --board BOARDNAME --bootloader
 ./waf bootloader

the bootloader will be in build/BOARDNAME/bin. If you have the intelhex module installed it will build in both bin format and hex format. Both are usually uploaded with DFU. The elf file will be in build/BOARDNAME/AP_Bootloader for loading with gdb.

The --bootloader option tells waf to get the hardware config from the hwdef-bl.dat file for the board. It will look in libraries/AP_HAL_CHibiOS/hwdef/BOARDNAME/hwdef-bl.dat

The bootloader protocol is compatible with that used by the PX4 project for boards like the Pixhawk. For compatibility purposes we maintain a list of board IDs in the board_types.txt file in this directory.

the board IDs in that file match the APJ_BOARD_ID in the hwdef.dat and hwdef-bl.dat files

The bootloader can load from USB or UARTs. The list of devices to load from is given in the SERIAL_ORDER option in hwdef-bl.dat