Add some modules; fix some modules support status.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 17 Apr 2009 10:39:42 +0000 (10:39 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 17 Apr 2009 10:39:42 +0000 (10:39 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2536 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/drv/eeprom.h
bertos/drv/kbd.h
bertos/drv/lcd_hd44.h
bertos/drv/lcd_text.h
bertos/drv/ntc.h
bertos/drv/pwm.h
bertos/drv/stepper.h

index 91c8dfe1073ef273a9ac096c1e2a0dca514cd273..3ab6637e13cd8bffdf6436ff99a2aad10a77448f 100644 (file)
@@ -38,7 +38,7 @@
  * \author Bernie Innocenti <bernie@codewiz.org>
  *
  * $WIZ$ module_name = "eeprom"
- * $WIZ$ module_depends = "kfile"
+ * $WIZ$ module_depends = "kfile", "i2c"
  */
 
 #ifndef DRV_EEPROM_H
index c022c3c61d3a716a7b8cfb8660ea47dbba2a33c4..f8838fc2f547987f736efdf3a90a3737d1618de0 100644 (file)
  * \author Bernie Innocenti <bernie@codewiz.org>
  * \author Stefano Fedrigo <aleph@develer.com>
  * \author Francesco Sacchi <batt@develer.com>
+ *
+ * $WIZ$ module_name = "kbd"
+ * $WIZ$ module_depends = "timer"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_kbd.h"
+ * $WIZ$ module_hw = "bertos/hw/hw_kbd.h", "bertos/hw/kbd_map.h"
  */
 
 #ifndef DRV_KBD_H
index 91b0f1c22f7b133fe1393db8cdce5982a0eca3f4..5a73b49acafc9478cae41d7d7032019ed14945e4 100644 (file)
  *
  * -->
  *
- * \brief Hitachi HD44780 and clones LCD module (interface)
+ * \brief Hitachi HD44780 and clones LCD module.
  *
  * \version $Id$
  *
  * \author Bernie Innocenti <bernie@codewiz.org>
  * \author Stefano Fedrigo <aleph@develer.com>
+ *
+ * $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"
  */
 
 #ifndef DRV_LCD_HD44_H
index e86d701f121cc598cb6ad5a8ffdd4082a02991a4..6afdab148272ec081984f1bc9e23bc67494134eb 100644 (file)
@@ -35,6 +35,9 @@
  * \version $Id$
  * \author Bernie Innocenti <bernie@codewiz.org>
  * \author Stefano Fedrigo <aleph@develer.com>
+ *
+ * $WIZ$ module_name = "lcd_text"
+ * $WIZ$ module_depends = "lcd_hd44", "timer", "formatwr"
  */
 
 #ifndef DRV_LCD_H
index 04ab4d2020a22b69de89973e065152ac51888154..942965a2e856f9f59bcd84f2321304655e412f63 100644 (file)
@@ -30,7 +30,7 @@
  * All Rights Reserved.
  * -->
  *
- * \brief Driver for NTC sensors (reads a temperature through an ADC)
+ * \brief Driver for NTC sensors (reads a temperature through an ADC).
  *
  * \version $Id$
  *
@@ -38,7 +38,6 @@
  * \author Francesco Sacchi <batt@develer.com>
  *
  * $WIZ$ module_name = "ntc"
- * $WIZ$ module_depends = "adc"
  * $WIZ$ module_hw = "bertos/hw/hw_ntc.h", "bertos/hw/ntc_map.h"
  */
 
index b9fa728413aa157962d0b6f6eaf00a11c6468d45..7db37d3831bfa38aa63560bf171c175275a04710 100644 (file)
@@ -40,6 +40,7 @@
  * $WIZ$ module_name = "pwm"
  * $WIZ$ module_configuration = "bertos/cfg/cfg_pwm.h"
  * $WIZ$ module_hw = "bertos/hw/pwm_map.h"
+ * $WIZ$ module_supports = "not avr"
  */
 
 #ifndef DRV_PWM_H
index 6db52c2ecdb9209678150af7178ea0dbbefa76f7..1ad268b953ccc551ecd4e52c1031a8c175e5d6da 100644 (file)
@@ -19,6 +19,7 @@
  * $WIZ$ module_depends = "timer", "ramp"
  * $WIZ$ module_configuration = "bertos/cfg/cfg_stepper.h"
  * $WIZ$ module_hw = "bertos/hw/hw_stepper.h"
+ * $WIZ$ module_supports = "not avr"
  */
 
 #ifndef DRV_STEPPER_H