Part Number: TMS320F28027F
Tool/software: Code Composer Studio
I have an array of uint16_t values that contains the data of an 8-bit char array to save memory, since c2000 chips do not have an 8-bit data type. So basically to save "hi" I'm using {0x6869} instead of the usual {0x0068, 0x0069}.
Is it possible to make the expressions window in the debug view show something readable instead of "\x6869"? Maybe somehow force a cast to an 8-bit char* type in this expressions view?
