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.