Fix SD and I2S wizard definitions.
authorlottaviano <lottaviano@38d2e660-2303-0410-9eaa-f027e97ec537>
Sat, 4 Jul 2009 10:57:25 +0000 (10:57 +0000)
committerlottaviano <lottaviano@38d2e660-2303-0410-9eaa-f027e97ec537>
Sat, 4 Jul 2009 10:57:25 +0000 (10:57 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2739 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/cfg_i2s.h
bertos/drv/i2s.h
bertos/drv/sd.h

index 2188e88c569d4d759b15a826ed62ca0a798153e8..d810d43562d187b343d46bf4c0aa3356a7506baa 100644 (file)
@@ -52,7 +52,7 @@
  *
  * $WIZ$ type = "int"
  */
-#define CONFIG_SAMPLE_FREQ     44100
+#define CONFIG_SAMPLE_FREQ     44100UL
 
 /**
  * Module logging level.
index 1729b927e35c645f596d0a4b7529fd15368109ad..2623702c4e17fe165c804e20a694bc436b0464f0 100644 (file)
@@ -57,7 +57,7 @@
  *
  * $WIZ$ module_name = "i2s"
  * $WIZ$ module_configuration = "bertos/cfg/cfg_i2s.h"
- * $WIZ$ module_supports = "not atmega103 and not atmega168 and not at91"
+ * $WIZ$ module_supports = "not atmega103 and not atmega168 and not atmega8"
  */
 
 #ifndef I2S_H
index 8be9c501749cb1f243e284ce3a586acf5c8827d2..9436c71a1879abf78657fcdccf23b329385c6fad 100644 (file)
  *
  * \version $Id$
  * \author Francesco Sacchi <batt@develer.com>
+ * 
+ * $WIZ$ module_name = "sd"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_fat.h"
+ * $WIZ$ module_depends = "kfile", "timer"
+ * $WIZ$ module_hw = "bertos/hw/hw_sd.h"
  */
 
 
@@ -44,7 +49,7 @@
 
 #include <fs/fatfs/diskio.h>
 #include <kern/kfile.h>
-#include <cfg/cfg_fat.h>
+#include "cfg/cfg_fat.h"
 
 bool sd_test(void);