29 lines
359 B
C
29 lines
359 B
C
#ifndef INTERRUPT_H
|
|
#define INTERRUPT_H 1
|
|
|
|
/**
|
|
* @name interrupt_open
|
|
* @addindex 平台定制函数
|
|
*
|
|
* ```c
|
|
* void interrupt_open();
|
|
* ```
|
|
*
|
|
* 开启中断
|
|
*/
|
|
void interrupt_open();
|
|
|
|
/**
|
|
* @name interrupt_close
|
|
* @addindex 平台定制函数
|
|
*
|
|
* ```c
|
|
* void interrupt_close();
|
|
* ```
|
|
*
|
|
* 开启中断
|
|
*/
|
|
void interrupt_close();
|
|
|
|
#endif
|