Hello I am using STM32F103VB series board. I am using some timer interrupts for my code. I want to configure heartbeat LED which will continuously keep blinking.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-02-21 1:51 AM
I have configured LED and it blinks properly until timer interrupt occurs. While timer interrupt part is getting executed, LED stops toggling. Once the interrupt part is executed, it starts blinking again. I know this question maybe dumb to many but how can I configure LED in such a way that it blinks even while the interrupt is getting executed?
- Labels:
-
STM32F1 Series
-
TIM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-02-21 8:37 AM
Interrupts generally should last less time than is humanly percievable.
Once you'll be ready to use exceptionally long interrupts, you won't need to ask this question.
JW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-02-24 10:54 PM
@Community member​ :| :expressionless_face:
