summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/lcd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 700ebbf67c..c6e0fe0f0e 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -126,8 +126,8 @@ extern void lcd_jump_scroll_delay(int ms);
126#define CLEAR_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] &= ~(1<<((y)&7)) 126#define CLEAR_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] &= ~(1<<((y)&7))
127#define INVERT_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] ^= (1<<((y)&7)) 127#define INVERT_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] ^= (1<<((y)&7))
128 128
129typedef void tLCDPixelFunc(int x, int y); /* for b&w */ 129typedef void lcd_pixelfunc_type(int x, int y); /* for b&w */
130typedef void tLCDBlockFunc(unsigned char *address, unsigned mask, unsigned bits); 130typedef void lcd_blockfunc_type(unsigned char *address, unsigned mask, unsigned bits);
131 131
132/* Memory copy of display bitmap */ 132/* Memory copy of display bitmap */
133extern unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]; 133extern unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH];