2

Is there a way to jump to the bootloader from the application code on the STWIN ?(https://www.st.com/en/evaluation-tools/steval-stwinkt1.html)

The following thread discusses the issue (How do you jump to the bootloader (DFU mode) in software on the STM32 F072?) but for another board, so it is not applicable in my case.

PS: I'am using Algobuilder to generate the firmware.

luffy
  • 2,246
  • 3
  • 22
  • 28

1 Answers1

2

This thread on the same topic shows a nice solution for another STM32L4 variant, which origiated in this tutorial. The STWIN is based on an STM32L4R9, but that interesting jump_to_bootloader() function might work similarly on an STWIN device. In application note AN2606 in Table 141. STM32L4Rxxx/4Sxxx it can be verified that the bootloader firmware also starts at address 0x1FFF0000. (By the way: it also works without modification on the STM32F4Discovery board.)

rel
  • 764
  • 5
  • 18