Part Number: CC1310EMK
Hi,
I'm trying to make some changes to board specific files such as ADCBufCC26XX.c and GPTimerCC26XX.c. However, when I debug the changes don't seem to make any affect. When I use breakpoints, the program doesn't actually execute the changes I added it seems. Can anybody give me some hints on this?
Specifically I want to make these changes:
GPTimerCC26XX_Params_init(¶msUnion.timerParams);
paramsUnion.timerParams.width = GPT_CONFIG_16BIT;
paramsUnion.timerParams.width = GPT_CONFIG_32BIT;
paramsUnion.timerParams.mode = GPT_MODE_PERIODIC_UP;
paramsUnion.timerParams.debugStallMode = GPTimerCC26XX_DEBUG_STALL_OFF;
object->timerHandle = GPTimerCC26XX_open(hwAttrs->gpTimerUnit, ¶msUnion.timerParams);
When the program runs, the paramsUnion.timerParams.width still has the value of GPT_CONFIG_16BIT
Thank you.