Bare Metal STM32 - runtime errors
This time we’ll focus on what happens in runtime. We’ll start from the binary we built previously and see how it behaves on real hardware. To flash the program, I’m using openocd together with ar...
This time we’ll focus on what happens in runtime. We’ll start from the binary we built previously and see how it behaves on real hardware. To flash the program, I’m using openocd together with ar...
There’s no better way to truly understand something than building it from scratch. So I decided to dust off my STM32 Nucleo board and try to bring it up completely “bare metal”. Let’s start with th...
This is a simple test post to verify that everything works correctly. And its looks like everything is ok. #include <string> int main() { std::cout << "Hello World" std::endl; ...