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.

Watch contents of ptr to buffer.

Code Composer 4.2.4, MSP430 ... given:

//-----------------------------------------------------------------------------
uint8_t aucBuf[10];
InterpretReadInts(aucBuf);
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
void InterpretReadInts(uint8_t* paucBuf)
{
}
//-----------------------------------------------------------------------------

Looking at paucBuf via a Watch window, I see only the first value when in the function.  Is there an easy way to see the entire array of chars?