/** * \file * * * \brief Led on/off macros. * * \author Daniele Basile */ #ifndef HW_LED_H #define HW_LED_H #include #define LED_ON() PORTB |= BV(5) #define LED_OFF() PORTB &= ~BV(5) #define LED_INIT() DDRB |= BV(5) #endif /* HW_LED_H */