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.

TMS320F28035: No source available for "_system_post_cinit() at C:/Users\SAI\Desktop\Test-Scheduler\Debug\Test-Scheduler.out:{3} 0x3ff8cd{4}"

Part Number: TMS320F28035

你好,

调整了F28035.cmd文件的FLASH空间分配后单步运行OK,直接运行异常,

修改如下:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
BTL_BEGIN : origin = 0x3E8000, length = 0x000002 /* Bootloader start address, TI default boot to flash address */
BTL_HEADER : origin = 0x3E8002, length = 0x000010 /* Bootloader Header, 16 Words */
BTL_CODE : origin = 0x3E8012, length = 0x003FEE /* Bootloader Code, 15k */
APP_BEGIN : origin = 0x3EC000, length = 0x000002 /* Application start address, bootloader exit jump address *///0x3EC000
APP_HEADER : origin = 0x3EC002, length = 0x000010 /* Application Header, 16 Words */
APP_CODE : origin = 0x3EC012, length = 0x009FEE /* Application Code, 39k */
CAL_DATA : origin = 0x3F6000, length = 0x002000 /* Calibration Data */
……
SECTIONS
{
/* Allocate program areas: */
.cinit : > APP_CODE PAGE = 0
.pinit : > APP_CODE PAGE = 0
.text : > APP_CODE PAGE = 0
codestart : > APP_BEGIN PAGE = 0/* without boot for now */
ramfuncs : LOAD = APP_CODE,
RUN = RAML0,
LOAD_START(_RamfuncsLoadStart),
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

直接运行后暂停显示如下: