Question
STM32 libraries for newbie
Posted on August 14, 2017 at 11:47
Hi,
I am starting out with STM32 (STM32F103CB). I am thinking of using Visual Studio with VisualGDB and Seggar debugger. Are there high level libraries I can use for setting up IO functions and also for delays and non-blocking timers?
I am wanting something simple like
delay(ms);
non-blocking:
StartTimer(x,delay);
if(Timer[x].Timeout){
}
And digital IO
SetPin(x,OUTPUT); (bit like Arduino code)
digitalWrite(pin,HIGH);
Thanks
