TDISP update

ugfx_release_2.6
Joel Bodenmann 2013-01-16 10:29:03 +01:00
parent 1f1dd62687
commit 1e4cb14188
1 changed files with 3 additions and 1 deletions

View File

@ -23,6 +23,8 @@
#include "gfx.h" #include "gfx.h"
int main(void) { int main(void) {
char charmap[8];
halInit(); halInit();
chSysInit(); chSysInit();
@ -33,7 +35,7 @@ int main(void) {
tdispClear(); tdispClear();
/* set cursor position and draw single characters */ /* set cursor position and draw single characters */
tdispGotoXY(4, 0); tdispSetCursor(4, 0);
tdispDrawChar('H'); tdispDrawChar('H');
tdispDrawChar('D'); tdispDrawChar('D');
tdispDrawChar('4'); tdispDrawChar('4');