Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
6 years, 3 months ago.
wait_(nn) and interrupts Question
I use the wait_(nn) function quite a lot.
My question is: if I disable interrupts, will it interfere with this function? Does this function use a timer interrupt?
Example
code . . .
disable_irq();
wait_ms(100);
code
enable_irq();
code