“NoInterrupts()”的版本間的差異

來自ALSROBOT WiKi
跳轉(zhuǎn)至: 導(dǎo)航、 搜索
(以“<pre style="color:blue"> #define noInterrupts() cli() </pre> 關(guān)中斷<br> 例子:<br> <pre style="color:green"> void setup() {} void loop() { noInterrupts(); ...”為內(nèi)容創(chuàng)建頁(yè)面)
 

2014年9月12日 (五) 17:18的最后版本

#define noInterrupts() cli()

關(guān)中斷

例子:

void setup() {}

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