Add missing assert.
[bertos.git] / app / at91sam7s / hw / hw_ser.h
index cccbed13f7d3405bf4f23b8b8b33e53c9ca95ebd..7b98f223bda7380b41589d30e5c1a5c50ef56e29 100644 (file)
  */
 
 
-#define SER_STROBE_ON    do {PIOA_SODR = BV(6);} while(0)
-#define SER_STROBE_OFF   do {PIOA_CODR = BV(6);} while(0)
-#define SER_STROBE_INIT  do {\
-       /* Set PA6 connected to PIOA */\
-       PIOA_PER = BV(6); \
-       /* Set PA6 as output */ \
-       PIOA_OER = BV(6); \
-       /* Disable multidrive on all pins */ \
-       PIOA_MDDR = BV(6); \
-} while(0)
-