CW10 with TSS2.0 issue

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

CW10 with TSS2.0 issue

Jump to solution
1,713 Views
Mickey
Contributor III

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)

Labels (1)
0 Kudos
1 Solution
442 Views
CrasyCat
Specialist III

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

View solution in original post

0 Kudos
8 Replies
443 Views
CrasyCat
Specialist III

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

0 Kudos
442 Views
Mickey
Contributor III

This is my sample project(hcs08) for reference.

0 Kudos
442 Views
CrasyCat
Specialist III

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

0 Kudos
442 Views
Mickey
Contributor III

Hi Cat

Build number is 1.0.0, I had this warning before CW6.3 version, is this not correct?

0 Kudos
442 Views
CrasyCat
Specialist III

Hello

 

I need the build number displayed below the version number.

 

CrasyCat

0 Kudos
442 Views
Mickey
Contributor III

Hi Cat

Version: 10.0
Build: 100621

0 Kudos
442 Views
CrasyCat
Specialist III

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

0 Kudos
442 Views
Mickey
Contributor III

Thank you for your suggestions.

0 Kudos