Create release.yml
[betaflight.git] / src / main / target / NUCLEOF303RE / README.txt
blobc92b758de549956e51b651688807c78b41c1aedd
1 NUCLEOF303RE target for use with ST Nucleo-F303RE.
3 - VCP is not working with STM32F303RE chip, so UART5 on PD2(RX) and PC12(TX), which is not available on CC package are reserved for configurator MSP connection. UART4, which is also not available on CC package may be configured for configurator MSP connection.
5 - Unfortunately, UART5 (or UART4) are not handled by embedded boot loader, so flashing through these ports is not possible.
7 - If PA11(USB-DM) and PA12(USB-DP) are properly wired, USB DFU can be used to flash the board.
9 - Target definition itself is a modified copy of SPRACINGF3EVO.
11 It is easy to build other targets to run on Nucleo-F303RE:
13 1. Add MCU_FLASH_SIZE line to target.mk (This will select stm32_flash_f303_512k.ld as linker script)
14     MCU_FLASH_SIZE = 512
16 2. Modify target.h to define extra pins used for UART5 if necessary.
17     #define TARGET_IO_PORTC 0xffff
18     #define TARGET_IO_PORTD BIT(2)
20 3. Modify target.h to define target configuration if UART5 should be used as configurator MSP connection.
21     #define USE_TARGET_CONFIG
23    And then add UART5 as MSP in config.c (see config.c for NUCLEOF303RE target)