亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
粉嫩蜜臀av国产精品网站| 日本高清不卡aⅴ免费网站| 国产福利91精品一区二区三区| 不卡的av中国片| 欧美高清视频不卡网| 日本一区二区三区在线不卡| 亚洲成av人片在线观看无码| 国产成人在线免费观看| 日韩午夜在线观看| 亚洲欧美电影院| 黄色小说综合网站| 91精品在线麻豆| 亚洲精品v日韩精品| 国产成人在线网站| 精品精品国产高清一毛片一天堂| 有码一区二区三区| 91视频观看视频| 国产精品伦理在线| 国产成人精品影视| 精品国产1区二区| 日本亚洲视频在线| 欧美日本在线播放| 亚洲永久精品国产| 色婷婷综合久久| 亚洲精品成人在线| 一本色道a无线码一区v| 日韩一区有码在线| av午夜一区麻豆| 中文字幕不卡三区| 成人性视频免费网站| 精品福利一二区| 国产一区二区视频在线播放| 91精品蜜臀在线一区尤物| 午夜精品一区二区三区免费视频| 欧美日韩中文字幕一区| 亚洲成av人片| 91精品国产综合久久香蕉的特点 | 国产成人av一区二区三区在线 | 成人免费精品视频| 久久久国际精品| 国产91高潮流白浆在线麻豆 | 精品一区二区在线视频| 日韩一区二区中文字幕| 久久99精品久久久久久动态图| 日韩一区二区在线免费观看| 蜜桃传媒麻豆第一区在线观看| 日韩三级在线观看| 国内不卡的二区三区中文字幕| 久久综合一区二区| 成人综合婷婷国产精品久久蜜臀| 国产精品天美传媒| 色婷婷久久99综合精品jk白丝| 一区二区三区国产| 91.麻豆视频| 国产精品亚洲成人| 中文字幕日韩欧美一区二区三区| 色综合天天在线| 午夜精品久久久久影视| 精品国产网站在线观看| 成人精品gif动图一区| 亚洲欧美日韩中文播放| 欧美精品欧美精品系列| 国产一区二区三区在线观看精品 | 亚洲人快播电影网| 51精品秘密在线观看| 国产精品69毛片高清亚洲| ...xxx性欧美| 日韩欧美激情在线| av一区二区三区四区| 天天av天天翘天天综合网| 久久这里只精品最新地址| 99久久夜色精品国产网站| 亚洲h动漫在线| 国产精品乱码人人做人人爱| 欧美午夜寂寞影院| 国产精品亚洲专一区二区三区 | 国产日本一区二区| 欧美视频一区二区三区四区 | 国产欧美中文在线| 欧美专区亚洲专区| 国产一区二区三区久久悠悠色av | 日本成人在线看| 国产精品初高中害羞小美女文| 欧美日本在线播放| 91在线你懂得| 国内外精品视频| 日韩精品免费专区| 99久久精品国产一区| 亚洲欧美视频在线观看视频| 欧美va亚洲va| 欧美伊人久久大香线蕉综合69 | 韩国精品主播一区二区在线观看| 国产精品国产三级国产普通话蜜臀| 51精品秘密在线观看| 日本久久电影网| 丰满白嫩尤物一区二区| 男男视频亚洲欧美| 亚洲国产精品久久久男人的天堂| 久久久青草青青国产亚洲免观| 欧美日本一区二区三区四区| 色八戒一区二区三区| 成人免费毛片aaaaa**| 精品亚洲国内自在自线福利| 性欧美大战久久久久久久久| 亚洲欧美日韩国产一区二区三区| 久久久影视传媒| 精品成人佐山爱一区二区| 69堂精品视频| 欧美日韩大陆在线| 欧美在线看片a免费观看| 白白色 亚洲乱淫| www.日韩大片| 成人精品国产一区二区4080| 国产精品99久久久久久有的能看| 精品制服美女久久| 久久精品久久综合| 久久精品国产一区二区| 奇米精品一区二区三区四区| 日韩**一区毛片| 蜜桃视频在线一区| 激情文学综合插| 国产精选一区二区三区| 国产福利不卡视频| 粉嫩蜜臀av国产精品网站| 成人精品免费视频| 99久久国产免费看| 日本精品一级二级| 在线精品观看国产| 欧美精品v日韩精品v韩国精品v| 欧美日韩另类一区| 日韩欧美的一区二区| 欧美大片在线观看一区| 久久久久久久av麻豆果冻| 中文字幕高清一区| 一区二区三区国产精华| 亚洲福中文字幕伊人影院| 奇米一区二区三区av| 国模冰冰炮一区二区| 99视频超级精品| 欧美三级韩国三级日本一级| 777午夜精品视频在线播放| 欧美成人a∨高清免费观看| 欧美国产1区2区| 亚洲一区二区三区四区五区中文| 日韩av电影一区| 国产馆精品极品| 欧美在线免费观看亚洲| 欧美成人精品福利| 国产精品久久久久aaaa樱花 | 九九国产精品视频| 波多野结衣91| 7777精品伊人久久久大香线蕉完整版 | 久久99国产精品久久| 粉嫩欧美一区二区三区高清影视| 色狠狠一区二区三区香蕉| 91精品国产欧美一区二区成人| 久久夜色精品一区| 亚洲国产成人tv| 国产精品亚洲人在线观看| 欧美亚洲日本国产| 国产蜜臀av在线一区二区三区| 亚洲亚洲人成综合网络| 国产九色sp调教91| 欧美精选午夜久久久乱码6080| 久久久久久久网| 亚洲一区二区美女| 国产不卡视频在线观看| 精品视频免费在线| 欧美国产日本视频| 免费欧美在线视频| 日本黄色一区二区| 国产日韩欧美高清| 久久精品国产免费| 欧美亚洲综合另类| 日韩码欧中文字| 国产一区二区女| 欧美电影影音先锋| 亚洲国产aⅴ天堂久久| 成人丝袜视频网| www久久精品| 日韩av高清在线观看| 欧美日韩亚洲另类| 亚洲欧美国产三级| 99久久精品情趣| 国产女人水真多18毛片18精品视频| 免费在线看成人av| 在线不卡a资源高清| 亚洲一区二区三区四区在线免费观看 | 国产欧美一区二区精品性色超碰| 亚洲r级在线视频| 欧美图区在线视频| 亚洲蜜臀av乱码久久精品| 成人动漫av在线| 日本一区二区三区电影| 狠狠色丁香婷综合久久| 日韩视频中午一区| 蜜臀精品久久久久久蜜臀| 91精品国产乱| 免费在线一区观看| 欧美成人猛片aaaaaaa|