User Activity

Hello,My application is loaded via flash memory. Four threads are created and they seem to be generated correctly because when the board is connected to the computer, all the threads run well. But if I disconnect the power and then turn it back on, t...
 Hello,I have a small problem when using a custom delay function as follows : void delay_us(uint32_t delayus) { uint32_t start_count = __HAL_TIM_GET_COUNTER(&htim2); while ((__HAL_TIM_GET_COUNTER(&htim2) - start_count) < delayus) { } }  The attac...
Kudos given to