Comply hw template to new sipo driver.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 3 Jun 2009 14:19:39 +0000 (14:19 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 3 Jun 2009 14:19:39 +0000 (14:19 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2703 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/hw/hw_sipo.h

index ad02c57e0ed75cd139b17d9c112fce17405fd4bc..a5d680ac1688905ac8bf630f7eb6f6d5e5f8d21c 100644 (file)
 #warning TODO:This is an example implementation, you must implement it!
 
 
+/**
+ * Mapping sipo connection on board.
+ * See scheme to more info.
+ */
+typedef enum SipoMap {
+
+       /* Add device here */
+
+       SIPO_CNT
+} SipoMap;
+
+
 /**
  * Define the macros needed to set the serial input bit of SIPO device
  * low or high.
  * Drive pin to load the bit, presented in serial-in pin,
  * into sipo shift register.
  */
-#define SIPO_SI_CLOCK() /* Implement me! */
+#define SIPO_SI_CLOCK(clk_pol)
+       do { \
+               /* Implement me! */ \
+               (void)clk_pol; \
+       } while (0)
 
 /**
  * Clock the content of shift register to output.
  */
-#define SIPO_LOAD()   /* Implement me! */
+#define SIPO_LOAD(device, load_pol)  \
+       do { \
+               /* Implement me! */ \
+               (void)device; \
+               (void)load_pol; \
+       } while (0)
 
 /**
  * Enable the shift register output.
  */
 #define SIPO_ENABLE() /* Implement me! */
 
+/**
+ * Set logic level for load signal
+ */
+#define SIPO_SET_LD_LEVEL(device, load_pol) \
+       do { \
+               /* Implement me! */ \
+               (void)device; \
+               (void)load_pol; \
+       } while (0)
+
+
+/**
+ * Sel logic level for clock signal
+ */
+#define SIPO_SET_CLK_LEVEL(clock_pol)  \
+       do { \
+               /* Implement me! */ \
+               (void)clock_pol; \
+       } while (0)
+
 
 /**
  * Do everything needed in order to init the SIPO pins.