1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 20:02:09 +02:00
tldr/pages/common/st-flash.md
2016-09-18 09:22:00 -05:00

15 lines
339 B
Markdown

# st-flash
> Flash binary files to STM32 ARM Cortex microcontrollers.
- Read 4096 bytes from the device starting from 0x8000000:
`st-flash read {{firmware}}.bin {{0x8000000}} {{4096}}`
- Write firmware to device starting from 0x8000000:
`st-flash write {{firmware}}.bin {{0x8000000}}`
- Erase firmware from device:
`st-flash erase`