-
Notifications
You must be signed in to change notification settings - Fork 4
Upload code ARM Tool Chain
Jorge Pérez edited this page Aug 19, 2024
·
2 revisions
- ARM gcc tool chain. This includes a compiler, debugger and libraries to develop to an ARM platform.
- Make. Tool to ease compiling process.
- Free tools to burn (upload) the code onto the board:
- STLINK: https://github.com/stlink-org/stlink
- Install on Windows: https://github.com/stlink-org/stlink/blob/develop/doc/compiling.md#Windows
- OpenOCD (For debugging): http://openocd.org/getting-openocd/
- Compile the project
cd AppCodeTemp
make all
- Investigate where the Flash starts for your board
It usually is 0x08000000
- Upload your binary
st-flash write yourfile.bin 0x08000000
- You can virtualize systems on the host Platform, a known tool to do so is Qemu.
- file.dtb is a "devicetree file. It's readen by the Linux Kernel and contains information about a system's hardware.
- Files withhout extentions are binaries. (In Unix systems).
With ❤️ from 🇲🇽