NanoPayload

stage2/lcd.h

161:7c00cd887cad
2016-04-24 Paul Boddie Separated the pixel-setting operations from the text pixel functions.
     1 #ifndef __LCD_H__     2 #define __LCD_H__     3      4 #include "xburst_types.h"     5      6 /* Initialisation functions. */     7      8 void lcd_init(void);     9     10 /* Output functions. */    11     12 void set_pixel(unsigned short h, unsigned short v, u32 value);    13 void test_pixel(unsigned short h, unsigned short v, unsigned short pixel_type);    14 void clear_pixel(unsigned short h, unsigned short v);    15     16 void test_pattern();    17     18 #endif /* __LCD_H__ */