Skip to content

NoInterrupts__

Angelo edited this page Dec 30, 2019 · 1 revision
#define noInterrupts() cli()

关中断

例子:

void setup() {}

void loop()
{
  noInterrupts();
  // critical, time-sensitive code here
  interrupts();
  // other code here
}
Clone this wiki locally