Hi everyone
i'm try cw10 with tss 2.0(new release,use PE), but have a issue, As follows:
ERROR L1822: Symbol TSS_Init in file ./Generated_Code\TSS1.obj is undefinedERROR L1822: Symbol TSS_SetSystemConfig in file ./Generated_Code\TSS1.obj is undefined
There any way to do this? Thanks.
ps: In CW6.3, everything is ok.(use processor expert)
Solved! Go to Solution.
Hello
This message indicates that you are missing implementation/definition for the specified symbols.
This may happen if you forget to add a source file or a library file to your project.
Check where those functions/variables are defined and make sure the corresponding file is part of the project.
Crystal
Hello
This message indicates that you are missing implementation/definition for the specified symbols.
This may happen if you forget to add a source file or a library file to your project.
Check where those functions/variables are defined and make sure the corresponding file is part of the project.
Crystal
This is my sample project(hcs08) for reference.
Hello
I am able to build the project you have attached with my MCU 10 installation.
I only get a couple of messages
"File D:\temp\testTSS\Sources\TSS\TSS_S08.lib has no DWARF debug info"
Which build of IDE are you running?
To retrieve that information:
- Select Help > About CodeWarrior Development Studio
- Click on the 4th icon starting from right (Tool tips is "Freescale Semiconductor - MCU"
What is the Build number associated to the line with Feature "MCU"?
CrasyCat
Hi Cat
Build number is 1.0.0, I had this warning before CW6.3 version, is this not correct?
Hello
I need the build number displayed below the version number.
CrasyCat
Hi Cat
Version: 10.0
Build: 100621
Hello
I am using the exact same version as you are using and your project builds just fine on my system.
I noticed the library file TSS_S08.lib is specified using a workspace relative path.
Is your project directory located inside of your workspace?
If not I would recommend you to change for a project relative path.
Just replace
"${workspace_loc:/testTSS/Sources/TSS/TSS_S08.lib}"
by
"${ProjDirPath}/Sources/TSS/TSS_S08.lib"
in the Linker > Input panel.
CrasyCat
Thank you for your suggestions.