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.
我现在移植的是一个裁剪版的UCOS II系统
系统中用了
#ifdef UC_OSII
PieVectTable.TINT0 = &OSTickISR;
PieVectTable.USER11 = &OSCtxSw;
#endif
根据TI的
// // FILE: DSP2833x_CpuTimers.h //
/ // NOTES: CpuTimer1 and CpuTimer2 are reserved for use with DSP BIOS and other realtime operating systems.
// // Do not use these two timers in your application if you ever plan // on integrating DSP-BIOS or another realtime OS.
// // For this reason, comment out the code to manipulate these two timers // if using DSP-BIOS or another realtime OS. //
也就是说用了实时操作系统就不能用定时器1 和定时器2 ,那么我的操作系统的“心脏”计时用的是定时器0,这样还是不能用定时器1和定时器2吗?
求高人指点!!!!