feather_stm32f405_express not running blinky uf2
Operating System
Windows 10
INFO_UF2.TXT
TinyUF2 Bootloader 0.9.4 - st/cmsis_device_f4 (v2.6.4-1-g2615e86) st/stm32f4xx_hal_driver (v1.7.9) tinyusb (0.12.0-203-ga4cfd1c69)
Model: Adafruit Feather STM32F405 Express
Board-ID: STM32F405-Feather-revB
Date: May 30 2022
What happened ?
TinyUF2 doesnt seem to be running programs copied over to the MSC.
How to reproduce ?
- Compile blink example for feather_stm32f405_express
- Convert bin to uf2
uf2conv -c -b 0x08010000 -f 0x57755a57 -o... - Copy uf2 to MSC device
- Board resets back into tinyuf2 bootloader (neopixel is green + MSC device mounts)
Debug Log
No response
Screenshots
Bootloader is there

Blink program seems to start at 0x08010000

can you attach both the bin and uf2 file here
here they are https://dl.dropboxusercontent.com/s/mr3bmmp14jm6gze/firmware.bin https://dl.dropboxusercontent.com/s/a97mtuhuiypp9hr/firmware.uf2
I should have asked this before, but can you also share your simplest test project as github repo viewable and commentable for review. Make sure you got the linker correctly setup with flash layout for application (staring at correct address). It is probably better to convert with hex file than bin file.
I will find one example that works as well for your reference when I got time to pull out the board to test with.
I think the issue is probably you didn't have correct linker script for your firmware application. The starting address must be 0x08010000 since vector table along with function call may or probably use absolute address. Can you double check that ?
also if you are using cmsis f4 from ST, make sure you update to the latest, old version will incorrectly set the vector table. I have update readme for this note https://github.com/adafruit/tinyuf2/blob/master/ports/stm32f4/README.md