/** * \file * * * \brief LM3S1986: OLED-RIT-128x96 (P14201) low-level hardware macros * * \author Andrea Righi */ #ifndef HW_RIT128x96_H #define HW_RIT128x96_H #include "cfg/macros.h" /* BV() */ #include "cfg/debug.h" #include #include #include /** * \name LCD I/O pins/ports * @{ */ /* OLED Data/Command control pin */ #define GPIO_OLEDDC_PIN 0 /* Implement me! */ /* OLED enable pin */ #define GPIO_OLEDEN_PIN 0 /* Implement me! */ /*@}*/ /** * \name LCD bus control macros * @{ */ /* Enter command mode */ #define LCD_SET_COMMAND() /* Implement me! */ /* Enter data mode */ #define LCD_SET_DATA() /* Implement me! */ /* Send data to the display */ #define LCD_WRITE(x) ((void)x)/* Implement me! */ /*@}*/ INLINE void lcd_rit128x96_hw_bus_init(void) { /* Implement me! */ } #endif /* HW_RIT128x96_H */