Hi,
I have intermediate experience with software development in C, and my Blue Pill arrived just today (alongside some LEDs, breadboard, etc), but I'm not sure how to get started.
I have already skimmed through some tutorials, and pretty much all of them seem to use the STM32CubeIDE. In contrast, my development environment comprises of WSL2 and Neovim configurations. I would prefer to keep it this way, while keeping complexity and unnecessary time consumption to a minimum.
Is there a way that I can do this?
#How to get started with STM32 Blue Pill without CubeIDE
1 messages · Page 1 of 1 (latest)
When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.
you're able to to use the arduino toolchain to write for stm32 boards, including the real and clone blue pills
you can set it up with arduino studio and then write the ino files in neovim if you'd like, but i would suggest using the ide
Ever since I started programming microcontrollers, I have almost exclusively done so using a vendor-provided (usually Eclipse-based) IDE, which does a lot of stuff automagically behind the scenes. But since I like to know how stuff works I figured I would ditch the IDE and try starting from scratch. In this blog post series I am going to go back...