Hello Friends
I have written a string in OLED at (2,5) coordinates using SSI, now I need to rewrite another string in the same coordinate. But both strings are overlapping.Can anybody suggest me how to clear a particular line !??? So that i can wait for few seconds after first string write and then clear it, which enables me to write another string.!!! I tried with the GrFlush(&sContext);, but dint worked :( :/
Below is the code chunk i am following....
void main(void)
{
//Oled initialization code
Display();
}
void Display(void)
{
GrContextInit(&sContext, &g_sCFAL96x64x16);
GrContextForegroundSet(&sContext, ClrWhite);
GrContextFontSet(&sContext, g_pFontCm12);
GrStringDraw(&sContext, "Hello", -1,2,25, 0);
//How to Clear the above string, So that I can display "Stellaris"
GrStringDraw(&sContext, "Stellaris", -1,2,25, 0);
}