ahh kommt mir bekannt vor
so schreibe ich meine Strings
€dit: ich benutze MPLAB mit dem Hitech Compiler(kommt aus meinem Ausbildungsbetrieb)Code:LCDSTATUS LCD_String(char *String) { UI Index; Index = 0; while(String[Index] !=0x00) { LCD_W(String[Index]); if(Index <= 15) Index++; else Index = 0; } return LCDOK; }
Lesezeichen