Hi team:
My customer now debugging with MSPM0G3507 device with XDS110 Emulator, and found two issues.
1. we set the global variables test_close_flag as uint16_t
2. and when we start the emulator, we change the value of test_close_flag via the expression table,
3. we try if / switch case as below, but we found the execute function can not work. And the expression show test_close_flag is a unsigned short type.
4. when i set the test_close_flag as bool, the expression show test_close_flag is a unsigned char type.
5.when i set the test_close_flag as uint32_t, the execute function work!!, And the expression show test_close_flag is a unsigned int type.
can you help to comments why cause this issue? the CCS version is 12.3.0.00005
And the last question is about the break point.
Here is the demo:
{
if (test_close_flag )
DL_time6_startcounter...;
else if (test_close_flag ==0 )
DL_time6_stopcounter...;
}
when we want to add a break point as the line of marked green, but the break point will occur as the line of marked red. hope to know why, tks again.