2025-11-24 4:29 PM
Hello,
I came across an old book in a bookstore that has some interesting bare metal C projects for a NUCLEO-F030. Other than setting the clock speed to 80 MHz and adjusting for some pin variance, will code written for it run on a NUCLEO-F3 or -F4?
Thanks.
Solved! Go to Solution.
2025-11-24 4:48 PM
While a STM32F030... has an M0 core the STM32F3... and STM32F4... have M4 cores.
There are similarities, but also many differences. So you will not be able to move any code without changes between them.
(Not using LL but HAL would hide many differences though.)
2025-11-24 4:48 PM
While a STM32F030... has an M0 core the STM32F3... and STM32F4... have M4 cores.
There are similarities, but also many differences. So you will not be able to move any code without changes between them.
(Not using LL but HAL would hide many differences though.)
2025-11-24 5:46 PM
Ah... didn't consider that. Yes, I would be using LL without HAL so there would be differences. Looks like I'm buying yet another NUCLEO. :)
Thanks.