tldr/pages/common/st-flash.md

17 lines
395 B
Markdown
Raw Normal View History

2016-09-18 05:04:12 +01:00
# st-flash
> Flash binary files to STM32 ARM Cortex microcontrollers.
> More information: <https://github.com/texane/stlink>.
2016-09-18 05:04:12 +01:00
- Read 4096 bytes from the device starting from 0x8000000:
2016-09-18 05:04:12 +01:00
`st-flash read {{firmware}}.bin {{0x8000000}} {{4096}}`
2016-09-18 05:04:12 +01:00
- Write firmware to device starting from 0x8000000:
2016-09-18 05:04:12 +01:00
`st-flash write {{firmware}}.bin {{0x8000000}}`
2016-09-18 05:04:12 +01:00
- Erase firmware from device:
`st-flash erase`