This is an example about CAN bus,
it can run through the the function which contains some statements like
```
HWREG (SOC_CM_PER_REGS + CM_PER_L3S_CLKSTCTRL) =
CM_PER_L3S_CLKSTCTRL_CLKTRCTRL_SW_WKUP;
```
if I use CLI generate the .bin file , it will runs well.
but if debug the program using .out file in CCS it will get stuck at such statements,
then can not do anything.but if it is the shared memory, it will still be OK, like:
```
HWREG(0x00012004) = 0x1234;
```
what's wrong with it? Is it a bug in CCS or there are something important I did not notice???