Other Parts Discussed in Thread: TMS320F280039C, SYSCONFIG, C2000WARE
Tool/software:
I am working on a CCS project that needs to run on both TMS320F2800135 and TMS320F280039C. To achieve this, I have included all the necessary files for both ICs and manually switch between them by:
- Excluding the unnecessary files (syscfg and linker command files) for the unused IC.
- Including the required files for the target IC.
- Updating the target configuration in CCS by selecting the correct
.ccxml
file.
While switching from TMS320F2800135 to TMS320F280039C, there are no build errors, but the program does not appear to be running:
- No output is observed.
- The program does not seem to execute on the TMS320F280039C device.
- Debug session runs but does not behave as expected.
Troubleshooting Steps Taken:
-
Checked Target Configuration:
- Ensured that the correct
.ccxml
file is active in targetConfigs. - Verified that the correct target processor is selected.
- Ensured that the correct
-
Modified Linker Command Files:
- Excluded
2800135_generic_ram_lnk.cmd
when switching toTMS320F280039C
. - Included
280039_generic_ram_lnk.cmd
instead.
- Excluded
-
Checked SysConfig & DriverLib Dependencies:
- Ensured that
syscfg
is updated to match the selected IC. - Verified that the correct driverlib files are being included in Includes.
- Ensured that
-
Debugging Observations:
- Program execution appears to be stuck.
- No error messages in the console.
- Registers do not update in real-time unless the program is manually halted.
- Attempted running in real-time mode, but values do not update dynamically.
Request for Help:
- Are there additional project settings required in CCS to switch between TMS320F2800135 and TMS320F280039C dynamically?
- Should any modifications be made in the startup files or memory configurations?
- Are there any known issues when switching between these two processors using CCS?
- What additional debugging steps can be taken to ensure that the code is running correctly on TMS320F280039C?
Any guidance on this issue would be greatly appreciated!