can tud_audio_fb_set() be called from inside tud_audio_feedback_interval_isr()? #2498
Unanswered
mastupristi
asked this question in
Q&A
Replies: 1 comment
-
You can even run the whole TUSB stack inside IRQ, it's what I does to ensure audio streaming has the highest priority. But this usage doesn't support RTOS yet, so you need to set
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have this curiosity:
can
tud_audio_fb_set()
be called from inside an interrupt handler such astud_audio_feedback_interval_isr()
?I think the question is legit, because calling
tud_audio_fb_set()
causes the use of FreeRTOS functions that should not be called from inside an interrupt.regards
Max
Beta Was this translation helpful? Give feedback.
All reactions