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

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

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

#define interrupts() sei()

開中斷

例子:


void setup() {}

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