?? interrupt.h
字號:
/**********************************************************************************************
Interrupt.h file
作者:Computer-lov
建立日期:2006-4-20
修改日期:2006-4-20
版本:V1.0
版權(quán)所有,盜版必究。
任何技術(shù)問題可到我的博客上留言: http://computer00.21ic.org
Copyright(C) Computer-lov 2006-2016
All rights reserved
**********************************************************************************************/
#ifndef __INTERRUPT_H__
#define __INTERRUPT_H__
#define ALL_INTERRUPT 1
#define SWI (1<<1)
#define TIMER0 (1<<2)
#define TIMER1 (1<<3)
#define TIMER2 (1<<4)
#define TIMER3 (1<<5)
#define FLASH_CONTROL (1<<6)
#define ADC_CHANNEL (1<<7)
#define PLL_LOCK (1<<8)
#define I2C0_SLAVE (1<<9)
#define I2C0_MASTER (1<<10)
#define I2C1_MASTER (1<<11)
#define SPI_SLAVE (1<<12)
#define SPI_MASTER (1<<13)
#define UART (1<<14)
#define EXTERNAL_IRQ0 (1<<15)
#define COMPARATOR (1<<16)
#define PSM (1<<17)
#define EXTERNAL_IRQ1 (1<<18)
#define PLA_IRQ0 (1<<19)
#define PLA_IRQ1 (1<<20)
#define EXTERNAL_IRQ2 (1<<21)
#define EXTERNAL_IRQ3 (1<<22)
#define PWM_TRIP (1<<23)
#define PWM_SYNC (1<<23)
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -