Other Parts Discussed in Thread: CONTROLSUITE
Tool/software: TI C/C++ Compiler
#pragma CODE_SECTION(some_function, "ramfuncs");
ramfuncs: LOAD = FLASHEN, RUN = CPU1RAMGS, LOAD_START(_RamfuncsLoadStart), LOAD_SIZE(_RamfuncsLoadSize), LOAD_END(_RamfuncsLoadEnd), RUN_START(_RamfuncsRunStart), RUN_SIZE(_RamfuncsRunSize), RUN_END(_RamfuncsRunEnd), PAGE = 0, ALIGN(4)
-
What will happen if we just keep those name with compiler v18.12.5 ? Does flash program still work normally as before we changed our compiler ?
-
If ".TI.ramfunc" naming is necessary, what should I create another flash program section and name it ? Is section valid to be named like ".TI.ramfunc2" ? What are the naming rules?