NoInterrupts()

來自ALSROBOT WiKi
跳轉至: 導航、 搜索
#define noInterrupts() cli()

關中斷

例子:

void setup() {}

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