BeRTOS
|
00001 00038 #ifndef HW_RIT128x96_H 00039 #define HW_RIT128x96_H 00040 00041 #include "cfg/macros.h" /* BV() */ 00042 #include "cfg/debug.h" 00043 00044 #include <cpu/attr.h> 00045 #include <cpu/irq.h> 00046 #include <cpu/types.h> 00047 00052 /* OLED Data/Command control pin */ 00053 #define GPIO_OLEDDC_PIN 0 /* Implement me! */ 00054 00055 /* OLED enable pin */ 00056 #define GPIO_OLEDEN_PIN 0 /* Implement me! */ 00057 00063 /* Enter command mode */ 00064 #define LCD_SET_COMMAND() /* Implement me! */ 00065 00066 /* Enter data mode */ 00067 #define LCD_SET_DATA() /* Implement me! */ 00068 00069 /* Send data to the display */ 00070 #define LCD_WRITE(x) ((void)x)/* Implement me! */ 00071 00073 INLINE void lcd_rit128x96_hw_bus_init(void) 00074 { 00075 /* Implement me! */ 00076 } 00077 00078 #endif /* HW_RIT128x96_H */