How do STM32 boards power-cycle and run #17457
-
|
After reading https://docs.micropython.org/en/latest/reference/reset_boot.html#boot-sequence I expected to see For the official BlackPill images I do not see a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
There is no _boot.py mechanism in the STM32 port. Instead the steps usually expected in _boot.py are done by C code in main.c. _boot.py is used by the most newer ports, starting with ESP8266. Maybe that mechanism could be ported back to STM32 and nrf. |
Beta Was this translation helpful? Give feedback.
There is no _boot.py mechanism in the STM32 port. Instead the steps usually expected in _boot.py are done by C code in main.c. _boot.py is used by the most newer ports, starting with ESP8266. Maybe that mechanism could be ported back to STM32 and nrf.