亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? defaultisr_nonbios.c

?? 瑞泰實驗箱例程-2812,
?? C
?? 第 1 頁 / 共 2 頁
字號:
/**********************************************************************
* File: DefaultIsr_nonBIOS.c
* Devices: TMS320F2812, TMS320F2811, TMS320F2810
* Author: David M. Alter, Texas Instruments Inc.
* History:
*   09/08/03 - original (based on DSP281x header files v1.00, D. Alter)
*   03/23/04 - removed redundant PIE acknowlege from CAP1INT_ISR (D. Alter)
**********************************************************************/

#include "DSP281x_Device.h"

#ifdef EXAMPLE_BIOS
    #include "example_BIOS.h"
#endif

#ifdef EXAMPLE_NONBIOS
    #include "example_nonBIOS.h"
#endif

#define led *(int *)0xc0000
#define key *(int *)0xc0001
/*** Global variables used by ADCINT_ISR() ***/
#define ADC_buf_len	50					// ADC buffer length
Uint16 ADC_buf[ADC_buf_len];			// ADC buffer allocation

/*** Global variables used by CAPINT1_ISR() ***/
Uint16 CAP_rising = 0;					// Captured rising edge timestamp
Uint16 CAP_falling = 0;					// Captured falling edge timestamp
Uint16 CAP_width = 0;					// PWM pulse width computed using captures
int i;

/*********************************************************************/
interrupt void INT13_ISR(void)			// 0x000D1A  INT13 - XINT13 (or CPU Timer1, reserved for TI)
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
} // INT13_ISR

/*********************************************************************/
interrupt void INT14_ISR(void)			// 0x000D1C  INT14 - CPU Timer2, reserved for TI
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void DATALOG_ISR(void)		// 0x000D1E  DATALOG - CPU data logging interrupt
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void RTOSINT_ISR(void)		// 0x000D20  RTOSINT - CPU RTOS interrupt
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void EMUINT_ISR(void) 		// 0x000D22  EMUINT - CPU emulation interrupt
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void NMI_ISR(void)			// 0x000D24  NMI - XNMI interrupt
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void ILLEGAL_ISR(void)		// 0x000D26  ILLEGAL - illegal operation trap
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER1_ISR(void)			// 0x000D28  USER1 - software interrupt #1
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER2_ISR(void)			// 0x000D2A  USER2 - software interrupt #2
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER3_ISR(void)			// 0x000D2C  USER3 - software interrupt #3
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER4_ISR(void)			// 0x000D2E  USER4 - software interrupt #4
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER5_ISR(void)			// 0x000D30  USER5 - software interrupt #5
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER6_ISR(void)			// 0x000D32  USER6 - software interrupt #6
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER7_ISR(void)			// 0x000D34  USER7 - software interrupt #7
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER8_ISR(void)			// 0x000D36  USER8 - software interrupt #8
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER9_ISR(void)			// 0x000D38  USER9 - software interrupt #9
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER10_ISR(void)			// 0x000D3A  USER10 - software interrupt #10
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER11_ISR(void)			// 0x000D3C  USER11 - software interrupt #11
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void USER12_ISR(void)			// 0x000D3E  USER12 - software interrupt #12
{
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void PDPINTA_ISR(void)		// 0x000D40  PDPINTA (EV-A)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;	// Must acknowledge the PIE group

// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void PDPINTB_ISR(void)		// 0x000D42  PDPINTB (EV-B)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;	// Must acknowledge the PIE group

// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void XINT1_ISR(void)			// 0x000D46  XINT1
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;	// Must acknowledge the PIE group

// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}     

/*********************************************************************/
interrupt void XINT2_ISR(void)			// 0x000D48  XINT2
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;	// Must acknowledge the PIE group

// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void ADCINT_ISR(void)		// 0x000D4A  ADCINT (ADC)
{
static volatile Uint16 GPIOF14_count = 0;		// Counter for pin toggle
static Uint16 *ADC_buf_ptr = ADC_buf;			// Pointer to buffer

	PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;		// Must acknowledge the PIE group

/*** Manage the ADC registers ***/
	AdcRegs.ADCTRL2.bit.RST_SEQ1 = 1;			// Reset SEQ1 to CONV00 state
	AdcRegs.ADCST.bit.INT_SEQ1_CLR = 1;			// Clear ADC SEQ1 interrupt flag

/*** Read the ADC result ***/
	*ADC_buf_ptr++ = AdcRegs.ADCRESULT0 >> 4;	// Read the result

/*** Brute-force the circular buffer ***/
	if( ADC_buf_ptr == (ADC_buf + ADC_buf_len) )
		ADC_buf_ptr = ADC_buf;					// Rewind the pointer to beginning

/*** Example: Toggle GPIOF14, which is connected to the LED on the eZdsp board ***/
	if(GPIOF14_count++ > 12500)					// Toggle slowly to see the LED blink
	{
		GpioDataRegs.GPFTOGGLE.bit.GPIOF14 = 1;	// Toggle the pin
		GPIOF14_count = 0;						// Reset the counter
	}

} // end ADCINT_ISR()

/*********************************************************************/
interrupt void TINT0_ISR(void)			// 0x000D4C  TINT0 (CPU TIMER 0)
{ 
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;	// Must acknowledge the PIE group

// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	//while(1);
	i=key;
	i=i&0xff;
	led=i;
}

/*********************************************************************/
interrupt void WAKEINT_ISR(void)		// 0x000D4E  WAKEINT (LPM/WD)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;	// Must acknowledge the PIE group
  
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void CMP1INT_ISR(void)		// 0x000D50  CMP1INT (EV-A)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;	// Must acknowledge the PIE group

// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void CMP2INT_ISR(void)		// 0x000D52  CMP2INT (EV-A)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;	// Must acknowledge the PIE group

// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void CMP3INT_ISR(void)		// 0x000D54  CMP3INT (EV-A)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;	// Must acknowledge the PIE group
  
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void T1PINT_ISR(void)			// 0x000D56  T1PINT (EV-A)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;	// Must acknowledge the PIE group
  
// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void T1CINT_ISR(void)			// 0x000D58  T1CINT (EV-A)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;	// Must acknowledge the PIE group

// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void T1UFINT_ISR(void)		// 0x000D5A  T1UFINT (EV-A)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;	// Must acknowledge the PIE group

// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}

/*********************************************************************/
interrupt void T1OFINT_ISR(void)		// 0x000D5C  T1OFINT (EV-A)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;	// Must acknowledge the PIE group

// Next two lines for debug only - remove after inserting your ISR
	asm (" ESTOP0");					// Emulator Halt instruction
	while(1);
}
      
/*********************************************************************/
interrupt void T2PINT_ISR(void)			// 0x000D60  T2PINT (EV-A)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
www.亚洲在线| 亚洲欧美在线视频| 在线观看免费一区| 欧美日韩国产片| 这里是久久伊人| 伦理电影国产精品| 亚洲欧美韩国综合色| 一本一本久久a久久精品综合麻豆| 国产成都精品91一区二区三| 粉嫩aⅴ一区二区三区四区五区 | 国产精品久久久久久一区二区三区| 久久精品一区二区三区av | 专区另类欧美日韩| 亚洲综合色区另类av| 麻豆91免费观看| 成人高清av在线| 91麻豆精品国产| 久久婷婷成人综合色| 亚洲精品你懂的| 久久99国产精品成人| 色综合天天综合网国产成人综合天 | 亚洲国产人成综合网站| 秋霞午夜av一区二区三区| 看国产成人h片视频| 99国产精品国产精品毛片| 欧美日韩一区二区欧美激情| 亚洲精品一区二区三区四区高清| 亚洲激情在线激情| 国产91丝袜在线播放0| 欧美一级日韩不卡播放免费| 国产日韩亚洲欧美综合| 欧美成人一区二区三区片免费| 国产亚洲一二三区| 国产一区二区视频在线播放| 欧美另类videos死尸| 国产精品久久久久三级| 高清shemale亚洲人妖| 欧美变态凌虐bdsm| 日韩av网站免费在线| 欧美性色欧美a在线播放| 久久久久久久久一| 精品亚洲国内自在自线福利| 91精品国产色综合久久ai换脸| 一区二区激情视频| 欧美日韩精品欧美日韩精品| 午夜一区二区三区视频| 99国产精品久久| 亚洲日本在线看| 91浏览器打开| 亚洲高清视频在线| 日韩欧美电影一二三| 国产一区二区精品久久99| 日本一区二区视频在线观看| 国产一区二区三区视频在线播放| 欧美一区二区三区视频| 免费人成精品欧美精品| ww亚洲ww在线观看国产| 91在线视频官网| 日韩国产在线观看| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 岛国精品在线观看| 亚洲香蕉伊在人在线观| 精品久久久久久无| av综合在线播放| 国产亚洲一区二区三区| thepron国产精品| 久久疯狂做爰流白浆xx| 一区二区在线观看视频 | 91小视频在线| 国产精品一二三四| 国产高清在线精品| 国产精品18久久久久久久久| 日韩专区在线视频| 日日摸夜夜添夜夜添国产精品| 一区二区激情视频| 亚洲国产成人tv| 亚洲自拍另类综合| 亚洲一区成人在线| 亚洲丶国产丶欧美一区二区三区| 亚洲国产日韩精品| 舔着乳尖日韩一区| 日韩精品91亚洲二区在线观看| 天涯成人国产亚洲精品一区av| 亚洲成人综合视频| 日本三级韩国三级欧美三级| 欧美96一区二区免费视频| 国产中文字幕精品| 成人免费黄色大片| 99久久伊人久久99| 色婷婷综合久久久久中文一区二区 | 精品国产免费久久| 久久久久9999亚洲精品| 国产精品不卡在线观看| 自拍偷拍亚洲综合| 亚洲电影一级黄| 蜜桃av噜噜一区| 国产成人精品影视| 一本大道久久a久久综合| 欧美久久久久中文字幕| 精品日韩成人av| 国产精品嫩草久久久久| 亚洲精品日韩专区silk| 午夜不卡av免费| 激情欧美一区二区| www.欧美日韩国产在线| 欧美天天综合网| 精品免费国产一区二区三区四区| 国产精品久久久久影院亚瑟| 亚洲午夜久久久久中文字幕久| 久久国产精品区| 91在线观看地址| 欧美一级搡bbbb搡bbbb| 国产精品每日更新| 日韩精品电影在线观看| www.成人在线| 欧美一区二区三区在线观看| 国产精品免费观看视频| 日本欧美一区二区三区| 成人av在线影院| 日韩一区二区三区电影在线观看 | 成人精品国产免费网站| 精品视频在线视频| 26uuu久久综合| 一区二区免费视频| 国产精品综合久久| 欧美美女一区二区在线观看| 国产精品萝li| 国内成+人亚洲+欧美+综合在线| 欧美影视一区在线| 国产精品久久久久9999吃药| 美日韩黄色大片| 色哟哟一区二区| 国产色产综合产在线视频| 亚洲成a人v欧美综合天堂下载| 成人国产精品免费观看动漫| 欧美一区二区日韩| 亚洲综合色噜噜狠狠| 成人精品gif动图一区| 26uuu国产在线精品一区二区| 亚洲第一成年网| 91小视频在线观看| 国产精品福利一区| 国产一区二区剧情av在线| 欧美一卡二卡三卡四卡| 亚洲综合精品自拍| 色呦呦一区二区三区| 欧美国产成人在线| 国产另类ts人妖一区二区| 欧美一卡2卡三卡4卡5免费| 亚洲国产精品久久久久婷婷884| 成人小视频在线观看| 久久综合成人精品亚洲另类欧美 | 91麻豆精品国产自产在线| 亚洲欧美日韩国产另类专区| 成人精品一区二区三区四区 | 欧美日韩免费观看一区二区三区| 亚洲欧美综合色| 白白色 亚洲乱淫| 中文字幕第一区综合| 风间由美一区二区av101| 国产日韩欧美精品在线| 国产精品综合网| 中文字幕免费一区| 99久久精品国产毛片| 亚洲免费三区一区二区| 色综合久久综合网欧美综合网| 日韩伦理av电影| 91亚洲永久精品| 亚洲福利视频一区二区| 欧美麻豆精品久久久久久| 亚洲成人手机在线| 9191久久久久久久久久久| 七七婷婷婷婷精品国产| 欧美va日韩va| 国产一区福利在线| 中文字幕免费不卡| 色婷婷综合久久| 天天综合天天综合色| 欧美xxxxx牲另类人与| 国产在线视频一区二区三区| 国产欧美日韩在线视频| 91网上在线视频| 亚洲一区二区精品久久av| 欧美一区二区三区婷婷月色| 久草中文综合在线| 中文一区一区三区高中清不卡| av不卡在线播放| 日韩高清在线一区| 久久久久国产免费免费| 色婷婷综合激情| 蜜臀av在线播放一区二区三区| 国产区在线观看成人精品| 91免费观看视频| 免费日本视频一区| 国产精品每日更新在线播放网址| 色成年激情久久综合| 九九**精品视频免费播放| 国产精品久久三区| 51精品秘密在线观看| 处破女av一区二区|