Other Parts Discussed in Thread: HALCOGEN
Tool/software: Code Composer Studio
I am trying to reproduce the FreeRTOS project described here, but with a RM57L.
Hercules TMS570LC43 RTOS project - LED Blinky with two Tasks
https://e2e.ti.com/support/archive/launchyourdesign/m/boosterpackcontest/666075
I generated code using HalCoGen. Then I import the code into CCS v9.1, and set the Project Properties as:
General->Advanced->Device Endianess: little
Runtime support library: <automatic>
Then I build the project (Project > Build Project) and get the above error in Resources
os_portasm.asm and HL_sys_core.asm
See like floating point (FP) instructions are generated by HalCoGen (example: fmdrr d0, r1, r1)
Q1 - If I need FP support, what Runtime support library should I use?
Q2 - If I do not need FP support, how can I resolve this issue?