From 7ed47d0ee20b96f16955a71bc3fcf3dad607bcfb Mon Sep 17 00:00:00 2001 From: reinelt Date: Mon, 19 Aug 2002 10:51:06 +0000 Subject: [lcd4linux @ 2002-08-19 10:51:06 by reinelt] M50530 driver using new generic bar functions git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@164 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- M50530.c | 311 +++++++++++---------------------------------------------------- 1 file changed, 55 insertions(+), 256 deletions(-) (limited to 'M50530.c') diff --git a/M50530.c b/M50530.c index b6cad32..4e12e53 100644 --- a/M50530.c +++ b/M50530.c @@ -1,4 +1,4 @@ -/* $Id: M50530.c,v 1.4 2002/08/19 07:36:29 reinelt Exp $ +/* $Id: M50530.c,v 1.5 2002/08/19 10:51:06 reinelt Exp $ * * driver for display modules based on the M50530 chip * @@ -20,6 +20,9 @@ * * * $Log: M50530.c,v $ + * Revision 1.5 2002/08/19 10:51:06 reinelt + * M50530 driver using new generic bar functions + * * Revision 1.4 2002/08/19 07:36:29 reinelt * * finished bar.c, USBLCD is the first driver that uses the generic bar functions @@ -74,7 +77,6 @@ #define XRES 5 #define YRES 8 #define CHARS 8 -#define BARS ( BAR_L | BAR_R | BAR_U | BAR_D | BAR_H2 ) static LCD Lcd; @@ -83,11 +85,8 @@ static char *PPdev=NULL; static int PPfd=-1; static char Txt[8][40]; -static BAR Bar[8][40]; static int GPO=0; -static int nSegment=1; -static SEGMENT Segment[128] = {{ len1:0, len2:0, type:255, used:0, ascii:32 }}; static void M5_command (unsigned int cmd, int delay) { @@ -119,7 +118,8 @@ static void M5_command (unsigned int cmd, int delay) ioctl (PPfd, PPFCONTROL, &frob); // EX signal pulse width - ndelay(200); + // Fixme: why 500 ns? Datasheet says 200ns + ndelay(500); // lower EX (Strobe, inverted) frob.mask=PARPORT_CONTROL_STROBE; @@ -131,6 +131,7 @@ static void M5_command (unsigned int cmd, int delay) } + static void M5_write (unsigned char *string, int len) { unsigned int cmd; @@ -141,6 +142,7 @@ static void M5_write (unsigned char *string, int len) } } + static void M5_setGPO (int bits) { if (Lcd.gpos>0) { @@ -166,6 +168,7 @@ static void M5_setGPO (int bits) } } + static int M5_open (void) { @@ -198,172 +201,13 @@ static int M5_open (void) return 0; } -static void M5_process_bars (void) -{ - int row, col; - int i, j; - - for (i=1; i=RES && Segment[j].len1=RES && Segment[j].len2RES) i1=RES; - i2=Segment[i].len2; if (i2>RES) i2=RES; - j1=Segment[j].len1; if (j1>RES) i1=RES; - j2=Segment[j].len2; if (j2>RES) i2=RES; - - return (i1-i2)*(i1-i2)+(j1-j2)*(j1-j2); + M5_command (0x300+192+8*ascii, 20); + M5_write (buffer, 8); } -static void M5_compact_bars (void) -{ - int i, j, r, c, min; - int pack_i, pack_j; - int pass1=1; - int deviation[nSegment][nSegment]; - - if (nSegment>CHARS+1) { - - for (i=1; iCHARS+1) { - min=65535; - pack_i=-1; - pack_j=-1; - for (i=2; i8) { + error ("M50530: bad GPOs '%s' in %s", s, cfg_file()); + return -1; + } } - else if ((gpos=strtol(s, &e, 0))==0 || *e!='\0' || gpos<0 || gpos>8) { - error ("M50530: bad GPOs '%s' in %s", s, cfg_file()); - return -1; - } Self->rows=rows; Self->cols=cols; @@ -430,11 +277,15 @@ int M5_init (LCD *Self) if (M5_open()!=0) return -1; + bar_init(rows, cols, XRES, YRES, CHARS); + bar_add_segment(0,0,255,32); // ASCII 32 = blank + M5_clear(); return 0; } + void M5_goto (int row, int col) { int pos; @@ -444,6 +295,7 @@ void M5_goto (int row, int col) M5_command (0x300|pos, 20); } + int M5_put (int row, int col, char *text) { char *p=&Txt[row][col]; @@ -455,77 +307,13 @@ int M5_put (int row, int col, char *text) return 0; } + int M5_bar (int type, int row, int col, int max, int len1, int len2) { - int rev=0; - - if (len1<1) len1=1; - else if (len1>max) len1=max; - - if (len2<1) len2=1; - else if (len2>max) len2=max; - - switch (type) { - case BAR_L: - len1=max-len1; - len2=max-len2; - rev=1; - - case BAR_R: - while (max>0 && col<=Lcd.cols) { - Bar[row][col].type=type; - Bar[row][col].segment=-1; - if (len1>=XRES) { - Bar[row][col].len1=rev?0:XRES; - len1-=XRES; - } else { - Bar[row][col].len1=rev?XRES-len1:len1; - len1=0; - } - if (len2>=XRES) { - Bar[row][col].len2=rev?0:XRES; - len2-=XRES; - } else { - Bar[row][col].len2=rev?XRES-len2:len2; - len2=0; - } - max-=XRES; - col++; - } - break; - - case BAR_U: - len1=max-len1; - len2=max-len2; - rev=1; - - case BAR_D: - while (max>0 && row<=Lcd.rows) { - Bar[row][col].type=type; - Bar[row][col].segment=-1; - if (len1>=YRES) { - Bar[row][col].len1=rev?0:YRES; - len1-=YRES; - } else { - Bar[row][col].len1=rev?YRES-len1:len1; - len1=0; - } - if (len2>=YRES) { - Bar[row][col].len2=rev?0:YRES; - len2-=YRES; - } else { - Bar[row][col].len2=rev?YRES-len2:len2; - len2=0; - } - max-=YRES; - row++; - } - break; - - } - return 0; + return bar_draw (type, row, col, max, len1, len2); } + int M5_gpo (int num, int val) { if (num>=Lcd.gpos) @@ -539,26 +327,21 @@ int M5_gpo (int num, int val) return 0; } + int M5_flush (void) { unsigned char buffer[256]; unsigned char *p; - int s, row, col; + int c, row, col; - M5_process_bars(); - M5_compact_bars(); - M5_define_chars(); - - for (s=0; s