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.

TMS320F280025C: 移植SYS/BIOS后 System_printf无法打印输出 且Task创建后过一会就卡死 是否有什么配置没完成的?有无官方移植成功的示例工程参考?

Part Number: TMS320F280025C

参考以下成功进行移植后 C代码如下:

[【TI C2000】F28002x移植SYS/BIOS并运行TI-RTOS及工程模板](blog.csdn.net/.../145650628)

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
* ======== main.c ========
*/
/* BIOS/XDC Include Files. */
#include <xdc/std.h>
#include <xdc/cfg/global.h>
#include <xdc/runtime/IHeap.h>
#include <xdc/runtime/System.h>
#include <xdc/runtime/Error.h>
#include <xdc/runtime/Memory.h>
#include <ti/sysbios/BIOS.h>
#include <ti/sysbios/knl/Task.h>
#include <ti/sysbios/knl/Event.h>
#include <ti/sysbios/knl/Semaphore.h>
#include <ti/sysbios/knl/Clock.h>
#include <ti/sysbios/heaps/HeapBuf.h>
#include <ti/sysbios/heaps/HeapMem.h>
#include <ti/sysbios/knl/Event.h>
#include <ti/sysbios/family/c28/Hwi.h>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

调试时 发现System_printf不能输出

且Task的循环在运行十次后就自动卡死

是否有什么配置没完成的?有无官方移植成功的示例工程参考?