User Activity

I have initialized TIM1 timer with:TIM1_DeInit();TIM1_TimeBaseInit(16, TIM1_COUNTERMODE_UP, 1000, 0);TIM1_SetCounter(0);TIM1_ITConfig(TIM1_IT_UPDATE, ENABLE);TIM1_Cmd(ENABLE);But calls to TIM1_GetCounter(); return the value 2. I can see the counter ...
New to STM8, I can create and upload new firmware, but I'd like to understand the reverse process in the event I need to use SWIM for root cause analysis of bad or damaged parts with multiple firmware versions. Imagine a drone with AI able to self-mo...