BeRTOS
hw_lcd.h
Go to the documentation of this file.
00001 
00039 #ifndef HW_LCD_H
00040 #define HW_LCD_H
00041 
00042 #warning FIXME: This is an example implementation, you must implement it
00043 
00044 #include <io/cm3.h>
00045 
00046 #include <cpu/attr.h>
00047 #include <cpu/types.h>
00048 
00049 #define LCD_BACKLIGHT_MAX    // Max backlight level
00050 #define LCD_BACKLIGHT_PIN    // Port C
00051 #define LCD_SPICLOCK         // Minimum cycle len = 80 ns according specs
00052 
00053 
00054 #define LCD_BACKLIGHT_LEVEL_UP() do { /* Implement me! */ } while(0)
00055 
00056 
00057 INLINE void lcd_setBacklight(uint8_t level)
00058 {
00059     (void)level;
00060     /* Implement me! */
00061 }
00062 
00063 #define LCD_BACKLIGHT_INIT() do { /* Implement me! */ } while(0)
00064 
00065 #endif /* HW_LCD_H */