Other Parts Discussed in Thread: TMS320F2812
I am on an MSP430 writing test scripts with DSS. The readData(int nPage, long nAddress, int nTypeSize) method asks for a page, but the MSP430 is not a pages architecture. What do I pass for nPage? Zero?
Also, what do I pass for nTypeSize? This number of bits long that the item to be fetched is?
In other words, to fetch a 16 bit unsigned integer, would I use:
var result = debugSession.Memory.readData(0, address, 16);
Lets assume that address is 0x1234, and the contents of memory at that address is 0xabcd. Then I would expect result to hold a 32 bit unsigned integer value of 0x0000abcd. Is this correct?