X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Flcd_text.c;h=b1f3d6f19a2f9fdef8196ca0a8550cc084542e7d;hb=a2fc2366ad564f11e705703ed1f42b7dc499a47c;hp=3ded59f3809dc0efaa93d3fc2305fc0285beb5ec;hpb=a5fdf78b7671975a529c0f6dcf085a275241a9f3;p=bertos.git diff --git a/bertos/drv/lcd_text.c b/bertos/drv/lcd_text.c index 3ded59f3..b1f3d6f1 100644 --- a/bertos/drv/lcd_text.c +++ b/bertos/drv/lcd_text.c @@ -27,7 +27,7 @@ * the GNU General Public License. * * Copyright 2005 Develer S.r.l. (http://www.develer.com/) - * + * All Rights Reserved. * --> * * \brief Generic text LCD driver (impl.). @@ -39,11 +39,14 @@ #include "lcd_text.h" #include "lcd_hd44.h" + +#include // BV() +#include + #include // timer_delay() + #include // _formatted_write() #include // LIST_EMPTY() -#include // BV() -#include #include // strlen() @@ -448,16 +451,4 @@ void lcd_init(void) lcd_setCursor(0); } -#if CONFIG_TEST -void lcd_test(void) -{ - int i; - - for (i = 0; i < LCD_ROWS * LCD_COLS; ++i) - { - lcd_putCharUnlocked('0' + (i % 10), lcd_DefLayer); - timer_delay(100); - } -} -#endif /* CONFIG_TEST */