This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] TMS320F2.8388万D:带sys BIOS的中断驱动程序库模块

Guru**** 2460850 points


请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/microcontrollers/c2000-microcontrollers-group/c2000/f/c2000-microcontrollers-forum/1091103/tms320f28388d-interrupt-driverlib-module-with-sys-bios

部件号:TMS320F2.8388万D
主题中讨论的其他部件:TMS320F2.8386万D

您好,

我正在尝试将裸机应用程序集成到系统BIOS应用程序中。  

我正在处理TMS320F2.8386万D的CM内核。

但是,我遇到了中断库的问题,并且找不到与它相关的任何文档。  

在interrupt.h中,存在禁用向量表的宏。  

//*****************************************************************************
//
// Flash Vector Table defined in startup.ccs.
//
//*****************************************************************************
#ifndef USE_RTOS
extern void (*vectorTableFlash[NUM_INTERRUPTS])(void);
#endif

//*****************************************************************************
//
// RAM Vector Table to be used as dstVectorTable in
// Interrupt_initRAMVectorTable(). Set the size of the vector table to the
// largest number of interrupts of any device.
//
//*****************************************************************************
#ifndef USE_RTOS
extern void (*vectorTableRAM[NUM_INTERRUPTS])(void);
#endif
#endif

USE_RTOS。  

这是如何与整个系统BIOS集成的? 是否有任何与此相关的示例或文档?  

感谢你的帮助

Swapnil