CodeLite: add a small delay during the debugger initialization.
[bertos.git] / examples / triface / hw / hw_input.h
index e3dcf1c455d841f4a70b346a28a2628ff82d5ead..f0ef721cf89fc1246c165d9643e64d23c52f8631 100644 (file)
@@ -33,9 +33,6 @@
  *
  * \brief Macro for HW_INPUT_H
  *
- *
- * \version $Id$
- *
  * \author Andrea Grandi <andrea@develer.com>
  */
 
 #include <avr/io.h>
 
 /* Set pins as input and enable pull-up */
-#define INPUT_INIT_D do                                        \
+#define INPUT_INIT_D do                                        \
 {                                                              \
        (DDRD &= ~(BV(PD4) | BV(PD5) | BV(PD6) | BV(PD7)));     \
        (PORTD |= (BV(PD4) | BV(PD5) | BV(PD6) | BV(PD7)));     \
 } while(0)
 
 #define INPUT_INIT_E do                                                \
-{                                                              \
+{                                                              \
        (DDRE &= ~(BV(PE4) | BV(PE5) | BV(PE6) | BV(PE7)));     \
        ATOMIC((PORTE |= (BV(PE4) | BV(PE5) | BV(PE6) | BV(PE7))));     \
 } while(0)