Hi,
I've run into a strange problem while debugging on my EK-TM4C123GXL kit. I've tried to run a code that ran just fine before and now I'm getting this error while stepping through the code:
Trouble Reading Memory Block at 0x900267fc on Page 0 of Length 0xd: Debug Port error occurred.
There were no modifications done to the code. It just used to run fine the way it is. The code line where the error appears is this one:
HWREG(ui32Base + GPIO_O_PCTL) = ((HWREG(ui32Base + GPIO_O_PCTL) & ~(0xf << ui32Shift)) | ((ui32PinConfig & 0xf) << ui32Shift));
I'm using the CCS for debugging. The behaviour seems almost random. Sometimes the code works yet other times the aforementioned error occurs. Thanks for any insight.