Skip to content

Upload code ARM Tool Chain

Jorge Pérez edited this page Aug 19, 2024 · 2 revisions

Universal Requirements:

Steps:

  1. Compile the project

cd AppCodeTemp

make all

  1. Investigate where the Flash starts for your board

It usually is 0x08000000

  1. 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).

Clone this wiki locally