2015-03-24 08:34 AM
When I look in my startup_stm32f427_437xx.s file. It says:
.syntax unified .cpu cortex-m3 .fpu softvfp .thumbShould it say .cpu cortex-m4?
2015-03-24 09:36 AM
Probably better it doesn't, it prevents the output of M4 instructions, especially FPU ones, prior to the FPU being enabled.
2015-03-25 09:00 AM
It looks like ''softvfp'' will take care of not using FPU instructions.
2015-03-25 09:18 AM
Does the file assemble, link, and work? Yes
Will you get an error if you put some very specific assembler functions in the startup.s file? Yes Is this a problem? Probably not, because if you're putting stuff in the startup file you will be sufficiently conscious of what you're doing, when, and what error(s) this will throw, and can change the processor setting.