Comply to new configuration files.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 19 May 2010 12:33:45 +0000 (12:33 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 19 May 2010 12:33:45 +0000 (12:33 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3723 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/drv/lcd_hd44.c
bertos/drv/lcd_hd44.h
bertos/drv/lcd_hd44_hwtest.c

index aa69b36b219ccdc9505ebba2040bffa19e670299..959878fd1053248a611a02a6b48edfe29f49663c 100644 (file)
@@ -38,7 +38,7 @@
 
 #include "lcd_hd44.h"
 
-#include "hw/hw_lcd.h"
+#include "hw/hw_lcd_hd44.h"
 
 #include "cfg/cfg_arch.h"
 
@@ -400,7 +400,7 @@ void lcd_remapfont(void)
 
 void lcd_hw_init(void)
 {
-       lcd_bus_init();
+       lcd_hd44_hw_bus_init();
 
        timer_delay(50);
 
index ceebb132ee9d22158b4bb83e975ab0b3711fc968..de7f122b2d906166cb8a1ed80666b0db8cdb4b51 100644 (file)
  *
  * $WIZ$ module_name = "lcd_hd44"
  * $WIZ$ module_depends = "timer"
- * $WIZ$ module_configuration = "bertos/cfg/cfg_lcd.h"
- * $WIZ$ module_hw = "bertos/hw/hw_lcd.h"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_lcd_hd44.h"
+ * $WIZ$ module_hw = "bertos/hw/hw_lcd_hd44.h"
  */
 
 #ifndef DRV_LCD_HD44_H
 #define DRV_LCD_HD44_H
 
-#include "cfg/cfg_lcd.h"
+#include "cfg/cfg_lcd_hd44.h"
 #include <cfg/compiler.h> /* For stdint types */
 
 /**
index 065cee51a94008fadd40dffbebde6dc2ad52933f..19c8d9f6df65cf38e58154e8be1f803741591818 100644 (file)
  *
  * \brief LM044L type LCD hardware module (impl.)
  *
- * \version $Id$
  * \author Bernie Innocenti <bernie@codewiz.org>
  * \author Stefano Fedrigo <aleph@develer.com>
  */
 
 #include "lcd_hd44.h"
-#include "hw/hw_lcd.h"
+#include "hw/hw_lcd_hd44.h"
 
 #include <cfg/test.h>
 #include <drv/timer.h>