亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
成人国产精品免费网站| 欧美一区二区女人| 91国偷自产一区二区三区观看| 91国产精品成人| 欧美一区二区免费观在线| 精品久久一区二区| 中文字幕亚洲综合久久菠萝蜜| 亚洲电影你懂得| 精彩视频一区二区| av在线一区二区| 7777精品伊人久久久大香线蕉完整版 | 久国产精品韩国三级视频| 国产精品白丝av| 在线观看欧美精品| 亚洲精品一区二区三区香蕉| 亚洲视频在线观看三级| www.日韩av| 97精品久久久久中文字幕| 91精品国产福利在线观看 | 久久这里只有精品视频网| 国产精品卡一卡二卡三| 日韩精品一级中文字幕精品视频免费观看 | av一区二区久久| 欧美一级片在线观看| 中文一区一区三区高中清不卡| 亚洲成年人网站在线观看| 国产成人午夜电影网| 欧美性一二三区| 国产精品天干天干在观线| 日本三级亚洲精品| 91年精品国产| 久久亚洲二区三区| 日韩高清一级片| 91丨porny丨国产入口| 久久一留热品黄| 日韩国产精品久久久久久亚洲| www.欧美色图| 精品福利视频一区二区三区| 午夜电影一区二区| 一本色道**综合亚洲精品蜜桃冫 | 国产乱人伦精品一区二区在线观看| 欧美日韩一区二区在线观看视频 | 精品久久久三级丝袜| 国产精品福利电影一区二区三区四区| 日韩黄色片在线观看| 色综合中文字幕国产 | 亚洲一区二区在线观看视频| 国产精品白丝av| 日韩免费一区二区三区在线播放| 亚洲最快最全在线视频| 成人免费观看av| 久久久久久免费网| 精品一区二区在线免费观看| 欧美人伦禁忌dvd放荡欲情| 亚洲三级理论片| 国产91精品久久久久久久网曝门| 欧美电视剧免费全集观看| 日韩成人午夜精品| 欧美日韩国产影片| 亚洲电影中文字幕在线观看| 99国产精品99久久久久久| 国产精品丝袜一区| 国产成人精品在线看| 久久久91精品国产一区二区三区| 久久99精品久久久| 日韩精品一区二区三区在线播放| 午夜国产精品影院在线观看| 欧美日韩在线直播| 亚洲国产wwwccc36天堂| 欧美亚洲丝袜传媒另类| 一区二区三区不卡视频在线观看| 91视频国产观看| 亚洲欧美区自拍先锋| 99热国产精品| 18涩涩午夜精品.www| 91偷拍与自偷拍精品| 综合激情成人伊人| 91麻豆自制传媒国产之光| 亚洲免费观看高清完整版在线观看 | 中文字幕av一区二区三区免费看| 国产剧情在线观看一区二区| 国产亚洲综合av| 国产成人免费av在线| 中文成人综合网| www.成人网.com| 亚洲男人天堂一区| 欧美色图激情小说| 日韩国产欧美三级| 精品国产一区二区精华| 国产成人午夜电影网| 中文字幕亚洲不卡| 在线观看视频91| 日本伊人午夜精品| 欧美精品一区二区三区视频| 福利视频网站一区二区三区| 日韩毛片一二三区| 欧美午夜一区二区三区免费大片| 日韩国产精品久久久久久亚洲| 日韩欧美一卡二卡| 成人在线综合网| 一区二区三区 在线观看视频 | 久久69国产一区二区蜜臀| 久久精品人人做| av电影在线观看完整版一区二区| 一区二区三区在线视频观看| 欧美日韩二区三区| 国产精品香蕉一区二区三区| 亚洲蜜桃精久久久久久久| 欧美精品一二三四| 国内精品伊人久久久久av一坑| 中文字幕中文字幕一区二区| 欧美日韩国产综合久久| 国产麻豆精品一区二区| 亚洲女与黑人做爰| 日韩欧美精品三级| 91麻豆视频网站| 美女视频黄a大片欧美| 国产三级欧美三级日产三级99| 色综合婷婷久久| 免费人成黄页网站在线一区二区| 国产亚洲欧美在线| 欧美日韩一区高清| 国产成人a级片| 偷拍亚洲欧洲综合| 国产精品欧美极品| 一区二区三区久久久| 亚洲精品一区二区三区影院| 91黄色免费版| 国产成人精品三级| 日韩av高清在线观看| 1024成人网色www| 日韩网站在线看片你懂的| 成人av网站在线观看| 免费xxxx性欧美18vr| 亚洲色图制服诱惑| 久久久亚洲国产美女国产盗摄 | 一区二区三区产品免费精品久久75| 精品91自产拍在线观看一区| 欧美在线观看视频在线| 国产成人免费视频网站高清观看视频| 无码av中文一区二区三区桃花岛| 国产精品入口麻豆九色| 欧美一卡在线观看| 欧美影院精品一区| 99久久er热在这里只有精品15 | 国产精品丝袜一区| 精品久久久久久久久久久久久久久久久| 91蜜桃视频在线| 国产精品白丝av| 六月丁香婷婷色狠狠久久| 一区二区在线观看不卡| 欧美极品aⅴ影院| 精品福利在线导航| 欧美一区二区在线播放| 欧美性videosxxxxx| av电影天堂一区二区在线| 国产在线观看免费一区| 免费观看在线色综合| 一区二区激情小说| 自拍视频在线观看一区二区| 国产日韩欧美a| 久久伊99综合婷婷久久伊| 欧美一级久久久久久久大片| 欧美日韩在线电影| 在线观看精品一区| 91国偷自产一区二区三区成为亚洲经典 | www.成人网.com| 国产69精品一区二区亚洲孕妇 | 精品一区二区三区在线观看| 天天av天天翘天天综合网| 一区二区三区四区高清精品免费观看| 国产欧美精品一区aⅴ影院 | 精品无人码麻豆乱码1区2区| 青青草国产成人av片免费| 首页综合国产亚洲丝袜| 亚洲一线二线三线视频| 亚洲精品乱码久久久久久| 亚洲女同一区二区| 一区二区在线观看视频| 一区二区三区在线高清| 亚洲免费看黄网站| 一区二区三区在线观看网站| 亚洲激情网站免费观看| 一区二区三区精品视频| 亚洲精品成人a在线观看| 亚洲最大的成人av| 亚洲一区在线免费观看| 亚洲综合色噜噜狠狠| 亚洲电影在线播放| 丝袜诱惑制服诱惑色一区在线观看| 天使萌一区二区三区免费观看| 三级久久三级久久| 蜜臀久久99精品久久久画质超高清| 日一区二区三区| 久久国产精品72免费观看| 麻豆久久一区二区| 极品少妇一区二区三区精品视频 | 欧美国产日产图区| 中文字幕在线不卡国产视频| 亚洲另类中文字|