From ace763b5b14815d68df57869eed86c4f964ff967 Mon Sep 17 00:00:00 2001 From: asterix Date: Wed, 19 May 2010 12:33:45 +0000 Subject: [PATCH] Comply to new configuration files. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3723 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/drv/lcd_hd44.c | 4 ++-- bertos/drv/lcd_hd44.h | 6 +++--- bertos/drv/lcd_hd44_hwtest.c | 3 +-- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/bertos/drv/lcd_hd44.c b/bertos/drv/lcd_hd44.c index aa69b36b..959878fd 100644 --- a/bertos/drv/lcd_hd44.c +++ b/bertos/drv/lcd_hd44.c @@ -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); diff --git a/bertos/drv/lcd_hd44.h b/bertos/drv/lcd_hd44.h index ceebb132..de7f122b 100644 --- a/bertos/drv/lcd_hd44.h +++ b/bertos/drv/lcd_hd44.h @@ -37,14 +37,14 @@ * * $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 /* For stdint types */ /** diff --git a/bertos/drv/lcd_hd44_hwtest.c b/bertos/drv/lcd_hd44_hwtest.c index 065cee51..19c8d9f6 100644 --- a/bertos/drv/lcd_hd44_hwtest.c +++ b/bertos/drv/lcd_hd44_hwtest.c @@ -32,13 +32,12 @@ * * \brief LM044L type LCD hardware module (impl.) * - * \version $Id$ * \author Bernie Innocenti * \author Stefano Fedrigo */ #include "lcd_hd44.h" -#include "hw/hw_lcd.h" +#include "hw/hw_lcd_hd44.h" #include #include -- 2.25.1