interrupt.h
上传用户:sss2005
上传日期:2022-08-05
资源大小:532k
文件大小:1k
源码类别:

USB编程

开发平台:

C++ Builder

  1. /******************************************************************************
  2. * PIC USB
  3. * interrupt.h
  4. ******************************************************************************/
  5. #ifndef INTERRUPT_H
  6. #define INTERRUPT_H
  7. /** I N C L U D E S **********************************************************/
  8. #include "systemtypedefs.h"
  9. /** D E F I N I T I O N S ****************************************************/
  10. #define mEnableInterrupt()          INTCONbits.GIE = 1;
  11. /** S T R U C T U R E S ******************************************************/
  12. /** E X T E R N S ************************************************************/
  13. /** P R O T O T Y P E S ******************************************************/
  14. void low_isr(void);
  15. void high_isr(void);
  16. #endif //INTERRUPT_H