STM32F100RBT6. I left HAL libraries behind and want to work writing straight to the registers but something is wrong and it does not work.
I want to blink a LED and I have written this code:#include "stm32f10x.h"int main(){ // initialize the clock for Port C RCC->APB2ENR |= (1<<4); // enable clock for GPIO C ( check it on memory and bus architecture) // set pin 9 of GPIOC ...