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

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

?? defaultisr_bios.c

?? ti tms281x BIOS/RTOS 實例代碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/**********************************************************************
* File: DefaultIsr_BIOS.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)
**********************************************************************/

#include "DSP281x_Device.h"

// EXAMPLE_BIOS or EXAMPLE_NONBIOS are defined in the CCS project build options
#ifdef EXAMPLE_BIOS
    #include "example_BIOS.h"
#endif

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


/*** 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


/*********************************************************************/
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

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}

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

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

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

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

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

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

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

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

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

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

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

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

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}     

/*********************************************************************/
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);
}

/*********************************************************************/
void ADCINT_ISR(void)			// 0x000D4A  ADCINT (ADC)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;		// Must acknowledge the PIE group

	SWI_post(&ADC_swi);					// post a SWI

} // end ADCINT_ISR()

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}

/*********************************************************************/
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);
}
      
/*********************************************************************/
void T2PINT_ISR(void)			// 0x000D60  T2PINT (EV-A)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;	// Must acknowledge the PIE group

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

/*********************************************************************/
void T2CINT_ISR(void)			// 0x000D62  T2CINT (EV-A)
{
	PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;	// Must acknowledge the PIE group

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

/*********************************************************************/

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产网站一区二区| 精品一区二区在线观看| 日本中文在线一区| 9l国产精品久久久久麻豆| 在线不卡欧美精品一区二区三区| 国产三级精品三级| 免费久久精品视频| 欧美三级电影在线看| 亚洲欧洲三级电影| 国产乱子轮精品视频| 日韩午夜激情视频| 亚洲第一综合色| 不卡的av电影| 国产亚洲综合在线| 精品一二三四在线| 欧美电影在哪看比较好| 亚洲午夜视频在线| 91免费版pro下载短视频| 欧美高清在线视频| 国产自产视频一区二区三区| 欧美一级片在线观看| 午夜伊人狠狠久久| 欧美视频一区二区三区| 亚洲另类在线一区| 在线观看免费视频综合| 亚洲精选视频免费看| 91麻豆福利精品推荐| 中文字幕亚洲精品在线观看| 成人午夜激情视频| 国产精品电影一区二区| 99久久久久免费精品国产 | 99久久精品一区| 国产香蕉久久精品综合网| 国产综合成人久久大片91| 国产丝袜欧美中文另类| 国产成人在线视频网址| 久久综合av免费| 国产不卡在线视频| 日韩一区欧美一区| 色综合中文字幕国产 | 欧美—级在线免费片| 国产河南妇女毛片精品久久久| 久久亚洲精品国产精品紫薇| 国产一区二区在线看| 久久久国际精品| 成人午夜在线免费| 亚洲制服丝袜一区| 制服丝袜av成人在线看| 麻豆国产精品视频| 国产欧美日韩精品a在线观看| 97精品超碰一区二区三区| 一区二区三区四区视频精品免费 | 91丝袜美腿高跟国产极品老师| 自拍偷拍国产精品| 欧美年轻男男videosbes| 麻豆精品在线看| 国产精品美女久久久久久久久久久 | 欧美电影影音先锋| 国产一区在线看| 曰韩精品一区二区| 欧美一级爆毛片| 成人午夜激情视频| 日本sm残虐另类| 国产视频一区二区三区在线观看| 日本道精品一区二区三区 | 精品国产99国产精品| 成人99免费视频| 奇米在线7777在线精品| 国产精品嫩草99a| 欧美一级欧美三级| 成人免费精品视频| 免费国产亚洲视频| 依依成人精品视频| 久久综合视频网| 欧美视频中文一区二区三区在线观看| 精品一区二区精品| 爽好多水快深点欧美视频| 中文字幕中文字幕在线一区| 日韩美女一区二区三区| 色婷婷精品大在线视频| 国产传媒一区在线| 日韩av电影免费观看高清完整版| 亚洲欧洲www| 日本一区二区三区四区| 欧美一区二区三区成人| 日本韩国欧美国产| 成人av免费观看| 国产成人久久精品77777最新版本| 天堂久久久久va久久久久| 亚洲精品日日夜夜| 国产精品久久精品日日| 久久久精品2019中文字幕之3| 日韩一卡二卡三卡国产欧美| 欧美日韩国产美| 在线视频你懂得一区| 91丝袜呻吟高潮美腿白嫩在线观看| 国产一区二区在线影院| 久久精品国产秦先生| 日韩黄色一级片| 亚洲午夜精品久久久久久久久| 国产精品欧美综合在线| xfplay精品久久| 26uuu另类欧美亚洲曰本| 精品久久久三级丝袜| 91精品国产综合久久久久久久 | 一区二区三区在线视频免费| **性色生活片久久毛片| 中文字幕在线一区| 中文成人av在线| 国产欧美一区二区三区网站 | 成人国产精品免费网站| 国产91精品在线观看| 国产精品亚洲一区二区三区妖精 | 久久久久久久av麻豆果冻| 精品少妇一区二区三区在线视频| 欧美一区二区三区在线看| 欧美一级片免费看| 欧美大片国产精品| 精品三级在线观看| 国产亚洲成av人在线观看导航| 久久久久久99久久久精品网站| 久久午夜色播影院免费高清| 国产清纯白嫩初高生在线观看91| 久久久精品国产免费观看同学| 久久精品人人做人人爽人人| 国产精品久久久久久久第一福利| 国产精品欧美精品| 亚洲综合色自拍一区| 日韩中文字幕一区二区三区| 美女免费视频一区| 国产成人午夜精品5599| 91在线观看下载| 欧美老肥妇做.爰bbww视频| 欧美一级二级三级蜜桃| 亚洲国产高清不卡| 一个色妞综合视频在线观看| 奇米888四色在线精品| 国产精品资源网站| 99久久综合精品| 欧美电影一区二区三区| 久久久精品免费免费| 一区二区三区.www| 久久国产精品无码网站| 99在线精品一区二区三区| 欧美日韩国产乱码电影| 国产欧美日韩激情| 偷拍日韩校园综合在线| 国产精品系列在线观看| 欧美性猛片xxxx免费看久爱| 日韩免费观看高清完整版| 亚洲人成人一区二区在线观看| 日本中文一区二区三区| 99亚偷拍自图区亚洲| 69堂亚洲精品首页| 国产精品久久精品日日| 麻豆专区一区二区三区四区五区| www.日韩在线| 日韩精品一区二区三区视频在线观看 | 粉嫩在线一区二区三区视频| 欧美精品久久久久久久久老牛影院| 国产清纯白嫩初高生在线观看91| 午夜精品在线看| 99re8在线精品视频免费播放| 欧美一区日本一区韩国一区| 国产精品久久99| 激情都市一区二区| 91精品在线观看入口| 亚洲日本在线天堂| 国产精品夜夜嗨| 日韩你懂的在线观看| 午夜精品久久久久久久99樱桃| 欧美日韩国产一级片| 中文字幕一区av| 国产99精品视频| 精品国产乱码久久| 奇米色一区二区| 91麻豆精品国产91久久久久久久久 | 日韩中文字幕91| 欧美亚洲日本一区| 亚洲精品水蜜桃| 粉嫩久久99精品久久久久久夜| 精品国产乱码久久久久久免费| 日韩专区欧美专区| 欧美日韩久久一区| 亚洲电影激情视频网站| 欧美性生活大片视频| 亚洲裸体xxx| 色婷婷亚洲婷婷| 一区二区三区.www| 欧美日韩在线三区| 香港成人在线视频| 欧美精品电影在线播放| 天天射综合影视| 3d成人h动漫网站入口| 亚洲1区2区3区4区| 在线成人免费视频| 日韩成人一级大片| 欧美va亚洲va香蕉在线| 国产一区二区在线观看免费| 国产拍欧美日韩视频二区|