This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/AWR1642: CCS/AWR1642

Part Number: AWR1642
Other Parts Discussed in Thread: SYSBIOS

Tool/software: TI-RTOS

Hi all,

I am developing an application based on the 'srrdemo_16xx_mss' project

I am trying to add TimeStamp features to this project

I added to the main code:

#include <ti/sysbios/family/arm/v7a/Pmu.h>

as seen in the "cycle_profiler.h" needed when MSS is defined

I copied 'as is' the function:

static inline void Cycleprofiler_init(void)
{
Pmu_configureCounter(0, 0x11, FALSE);
Pmu_startCounter(0);
}

 and I called it in main() before "BIOS_start();"

Rebuilding the project, I got the following Console messages when start linking:

.......................................................................................................................................

<Linking>

undefined first referenced
symbol in file
--------- ----------------
ti_sysbios_family_arm_v7a_Pmu_configureCounter__E ./mss_main.obj
ti_sysbios_family_arm_v7a_Pmu_startCounter__E ./mss_main.obj

error #10234-D: unresolved symbols remain
error #10010: errors encountered during linking; "srrdemo_16xx_mss.xer4f" not built

........................................................................................................................................

What is it still missing ?

I found the same problem, unable to activate the PMU feature when running some driver's unit test found in the SDK

Thank you,

Claudio