I write a string out the display using GrStringDrawCenter and display is not cleared before the new string is written so
you still see part of the old string that was being displayed. i have tried calling GrFlush and then GrStringDrawCenter but that does not clear it either. What is the command to clear the display before you write a new string?
Void UpdateMyDisplay(
char * newMessage)
{
GrFlush(&sContext);
GrStringDrawCentered(&sContext,newMessage , -1,
GrContextDpyWidthGet(&sContext) / 2,
((GrContextDpyHeightGet(&sContext) - 24) / 2) + 24,
0);
}