This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Change MSB/LSB interpretation for a single call to memory.readData() possible?

Other Parts Discussed in Thread: MSP430F249

Hello, I'm using the DSS command Long.toHexString(debugSession.memory.readData(0, 0x1085, 24)) to read the following 3 bytes from memory on an MSP430F249.

0x1085: 00

0x1086: 07

0x1087: DC

On the data displayed above, the command returns 0xDC0700, however in this case I would like it to be interpreted as 0x0007DC.  Is it possible to change the "endianness" used by memory.readData for a single command or is determined purely by the target used (and thus not modifiable)?