sam3n-ek example: fix led macros
[bertos.git] / bertos / drv / spi_bitbang.h
index 4bccb821a84dcc5bdd0a653cc03013d918244a20..308b78bb7f7660ba0ea06ea815bfc23aaeb21623 100644 (file)
  * the GNU General Public License.
  *
  * Copyright 2003, 2004, 2006 Develer S.r.l. (http://www.develer.com/)
- * Copyright 2000 Bernardo Innocenti <bernie@codewiz.org>
+ * Copyright 2000 Bernie Innocenti <bernie@codewiz.org>
  *
  * -->
  *
- * \brief Emulated SPI Master for DSP firmware download (interface)
+ * \brief Emulated SPI driver.
  *
- * \version $Id: spi.h 15321 2007-03-21 14:45:12Z asterix $
  *
  * \author Francesco Sacchi <batt@develer.com>
  * \author Daniele Basile <asterix@develer.com>
+ *
+ * $WIZ$ module_name = "spi_bitbang"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_spi_bitbang.h"
+ * $WIZ$ module_hw = "bertos/hw/hw_spi.h"
  */
 
 
 #ifndef DRV_SPI_BITBANG_H
 #define DRV_SPI_BITBANG_H
 
+#include "cfg/cfg_spi_bitbang.h"
+
 #include <cfg/compiler.h>
-#include <appconfig.h>
 
 /**
  * Define send and receive order bit.
- * \{
+ *
+ * $WIZ$ 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