stm32
Added by Sergey Durmanov about 4 years ago
is the compiler ready for programming stm32h7 boards?
Replies (1)
RE: stm32 - Added by Florian Negele about 4 years ago
In theory yes: The compiler is capable of emitting code that is executable on Cortex-M7 cores, just use the armt32
or armt32fpe
targets. However, since there is no runtime environment available yet, you will have to provide the initialisation of the CPU and the implementation of some standard C functions like _Exit
and abort
yourself. The native runtime support for the Raspberry Pi might serve as a starting point, see runtime/rpi2brun.asm
.