User Activity

   uint32_t currentTime1 = HAL_GetTick(); // Her 1000 ms'de bir işlem yap if (currentTime1 - lastTime >= 500) { HAL_GPIO_TogglePin(GPIOB, GPIO_PIN_14); // LED'i toggla lastTime = curren...
 void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin) { if (GPIO_Pin == GPIO_PIN_1) { uint32_t current_time = HAL_GetTick(); if ((current_time - last_interrupt_time) > 500) { last_interrupt_time = current_t...
Friends, which algorithm do you use to control the LEDs in this structure? I need your ideas. I have prepared a table of the LEDs' turn on order. 
When I give the delay time greater than 300 for the code below (500ms or 1000ms), GetTick or HAL_Delay(500); functions do not work.If I make the time 100ms, 200ms or 300ms, it works.When I want to control the delay at longer times, the program does n...
Hal_Delay çalışmayı durdurdu ( STM32F030C6T6 )Forumda buna benzer birçok konu okudum ama bir çözüm bulamadım. Sanırım sorunun kaynağının bu olduğunu anlayalı 7-8 gün oldu. Hal_Delay() çalışmadığı için GetTick() fonksiyonunu da kullanamıyorum. Basit t...