/** * \file * * * \brief Atmel SAM3N-EK testcase * * \author Luca Ottaviano * \author Daniele Basile */ #ifndef HW_LCD_H #define HW_LCD_H #warning FIXME: This is an example implementation, you must implement it #include #include #include #define LCD_BACKLIGHT_MAX // Max backlight level #define LCD_BACKLIGHT_PIN // Port C #define LCD_SPICLOCK // Minimum cycle len = 80 ns according specs #define LCD_BACKLIGHT_LEVEL_UP() do { /* Implement me! */ } while(0) INLINE void lcd_setBacklight(uint8_t level) { (void)level; /* Implement me! */ } #define LCD_BACKLIGHT_INIT() do { /* Implement me! */ } while(0) #endif /* HW_LCD_H */