Open gfuehrer opened 7 months ago
Hello @gfuehrer,
In fact, there is no mistake in your statement. The STM32F3 series contains the Cortex-M4 core, while the STM32L5 series includes the Cortex-M33 core.
therefore
As long as there is no issue with our firmware, please allow me to close this issue.
Regards, Rania
@RJMSTM Please re-open this issue and re-read the issue description. The problem is the difference between <> and "", NOT the Cortex-M type.
Hello @salkinium ,
I apologize for the confusion regarding your issue, I will forward your question on to our development team.
Regards,
ST Internal Reference: 186603
Historically, device headers, eg stm32F303.h, have lines like this:
But in some newer ones, eg stm32L562.h, it is now like this:
Putting just the one CMSIS header but not the other in the -isystem search path instead of the -iquote search path is, obviously, crazed. I think they correctly belong in the -iquote search path, and why change from the past?
Please replace #include with #include "core_cm...h" everywhere that it got messed up.