lcd_rit128x96.h
Go to the documentation of this file.00001
00039 #ifndef LCD_LM3S_H
00040 #define LCD_LM3S_H
00041
00042 #include <gfx/gfx.h>
00043
00044 #include <cpu/types.h>
00045
00046 #define LCD_WIDTH 128
00047 #define LCD_HEIGHT 96
00048
00049 void rit128x96_blitRaw(const uint8_t *data,
00050 uint8_t x, uint8_t y, uint8_t width, uint8_t height);
00051 void rit128x96_blitBitmap(const Bitmap *bm);
00052 void rit128x96_on(void);
00053 void rit128x96_off(void);
00054 void rit128x96_init(void);
00055
00056 #endif