Fix comments and add the wizard info.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 6 Feb 2009 10:16:39 +0000 (10:16 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 6 Feb 2009 10:16:39 +0000 (10:16 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2288 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/cfg_spi_bitbang.h
bertos/drv/spi_bitbang.h

index f292346b5e56324b2d67f68800c36c774c5ea09c..eab167ea0b633a01fa21ac2ccece35287f650611 100644 (file)
 #ifndef CFG_SPI_BITBANG_H
 #define CFG_SPI_BITBANG_H
 
-/// Set data order for emulated SPI
-#define CONFIG_SPI_DATAORDER      1
+/**
+ * Set data order for emulated SPI.
+ *
+ * $WIZARD = {
+ * "type" : "enum",
+ * "value_list" : "ordet_bit_list"
+ * }
+ */
+#define CONFIG_SPI_DATAORDER  SPI_LSB_FIRST
 
 #endif /* CFG_SPI_BITBANG_H */
 
index 85816d87bb73f1ba8fa9bd1c6c9b8b8ef2de4598..07c7b6a2d9220280799f06f69d6dd2dbcfa0e20a 100644 (file)
  *
  * \author Francesco Sacchi <batt@develer.com>
  * \author Daniele Basile <asterix@develer.com>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "spi_bitbang",
+ * "depends" : [],
+ * "configuration" : "bertos/cfg/cfg_spi_bitbang.h"
+ * }
  */
 
 
 
 /**
  * Define send and receive order bit.
- * \{
+ *
+ * $WIZARD_LIST = {
+ * "ordet_bit_list" : ["SPI_LSB_FIRST", "SPI_MSB_FIRST"]
+ * }
  */
 #define SPI_LSB_FIRST 1
 #define SPI_MSB_FIRST 2
-/* \} */
 
 #if CONFIG_SPI_DATAORDER == SPI_LSB_FIRST
        #define  SPI_DATAORDER_START    1