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.

CCS/AWR1642: Change idletime at run-time

Part Number: AWR1642

Tool/software: Code Composer Studio

Hello , 

I can modify the chirpCfg & profileCfg at run-time and they could be applied successfully.

Then , I try to change the Config of idle-time as above action, but it couldn't work.

I can receive the RL_RET_CODE_OK from rlSetProfileConfig , than the system would be crash.

My Code:

retVal = rlSetProfileConfig (RL_DEVICE_MAP_INTERNAL_BSS, 1U, &profileCfg);

if (retVal != RL_RET_CODE_OK)
{
System_printf ("Error: Unable to configure the profile [Error %d]\n", retVal);
}

retVal = rlSetChirpConfig(RL_DEVICE_MAP_INTERNAL_BSS, 1U, &chirpCfg);
if (retVal != RL_RET_CODE_OK)
{
System_printf ("Error: Unable to configure chirp [Error %d]\n", retVal);
}

 

 

Thanks.