Other Parts Discussed in Thread: SYSBIOS, TMS320F28335
UIA Issue in Code Composer Studio not building
Hello, I just installed UIA version 2.0.5.50 into my code composer studio (CCS version 6.1.2) project because I guess this will extrapolate and graph things like CPU-load for example. We have SYS/BIOS 6.35.4.50 for this project and I looked at spruh43f.pdf page. 88 Chapter 5.1 “Quickly Enabling UIA Instrumentation” to uses this tool.
3. Use the LoggingSetup Module. Add the following statement to include UIA’s LoggingSetup module
in your application’s configuration. For example:
var LoggingSetup =
xdc.useModule('ti.uia.sysbios.LoggingSetup');
Including the LoggingSetup module creates logger instances needed by UIA and assigns those
loggers to the modules that need them in order to provide UIA data.
So I added this line into the projects .cfg var LoggingSetup = xdc.useModule('ti.uia.sysbios.LoggingSetup');
MY PROJECT .cfg from Code Composer
// !GRAPHICAL_CONFIG_TOOL_SCRIPT_INSERT_POINT!
var Idle = xdc.useModule('ti.sysbios.knl.Idle');
var Clock = xdc.useModule('ti.sysbios.knl.Clock');
var Semaphore = xdc.useModule('ti.sysbios.knl.Semaphore');
var Mailbox = xdc.useModule('ti.sysbios.knl.Mailbox');
var Load = xdc.useModule('ti.sysbios.utils.Load');
var Task = xdc.useModule('ti.sysbios.knl.Task');
var BIOS = xdc.useModule('ti.sysbios.BIOS');
var ti_sysbios_family_c28_Hwi = xdc.useModule('ti.sysbios.family.c28.Hwi');
var System = xdc.useModule('xdc.runtime.System');
var Timer = xdc.useModule('ti.sysbios.family.c28.Timer');
var TimestampProvider = xdc.useModule('ti.sysbios.family.c28.TimestampProvider');
var LoggingSetup = xdc.useModule('ti.uia.sysbios.LoggingSetup');
I got a build error as a result ->"Description Resource Path Location Type
declaration is incompatible with "void ti_uia_loggers_LoggerStopMode_Params__init__S(xdc_Ptr, const void *, xdc_SizeT, xdc_SizeT)" (declared at line 411 of "C:/ti/uia_2_00_05_50/uia_2_00_05_50/packages/ti/uia/loggers/LoggerStopMode.h") .xdchelp /Svcm line 21004 C/C++ Problem"
Is there a suggestion out there to fix this?
I am not familiar with this tool at all so any suggestion are much appreciated.
thanks, Tom