sysvecs.h
来自「TMS320LF2407 svpwm 源码,可以作为参考用.」· C头文件 代码 · 共 36 行
H
36 行
/* ==============================================================================
File Name: sysvecs.h
Originator: Digital control systems Group - Texas Instruments
Description: This file contains the interrupt vector table for Mathfunctions demo
=====================================================================================
History:
-------------------------------------------------------------------------------------
16-12-2000 Release Rev 1.0 dd/mm/yyyy format
================================================================================= */
#ifndef __SYSVECS_H__
#define __SYSVECS_H__
//asm(" .include \"c200mnrt.i\" ");
//asm(" .include \"LF2407REGS.h\" ");
asm(" .sect \"vectors\" ");
asm(" .ref _c_int0 ");
asm(" .ref _phantom ");
asm(" .ref _pwm_int2 ");
asm(" B _c_int0 ;00h reset ");
asm(" B _phantom ;02h INT1 ");
asm(" B _pwm_int2 ;04h INT2 ");
asm(" B _phantom ;06h INT3 ");
asm(" B _phantom ;08h INT4 ");
asm(" B _phantom ;0Ah INT5 ");
asm(" B _phantom ;0Ch INT6 ");
//asm(" .include \"rtvecs.h\" ");
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?