summaryrefslogtreecommitdiff
path: root/firmware/target/arm/as3525/lcd-ssd1303.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/as3525/lcd-ssd1303.c')
-rw-r--r--firmware/target/arm/as3525/lcd-ssd1303.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/target/arm/as3525/lcd-ssd1303.c b/firmware/target/arm/as3525/lcd-ssd1303.c
index e4437e70ca..09f2638ff7 100644
--- a/firmware/target/arm/as3525/lcd-ssd1303.c
+++ b/firmware/target/arm/as3525/lcd-ssd1303.c
@@ -216,6 +216,8 @@ void lcd_blit_mono(const unsigned char *data, int x, int by, int width,
216 } 216 }
217} 217}
218 218
219
220#ifndef BOOTLOADER
219/* Helper function for lcd_grey_phase_blit(). */ 221/* Helper function for lcd_grey_phase_blit(). */
220void lcd_grey_data(unsigned char *values, unsigned char *phases, int count); 222void lcd_grey_data(unsigned char *values, unsigned char *phases, int count);
221 223
@@ -242,6 +244,9 @@ void lcd_blit_grey_phase(unsigned char *values, unsigned char *phases,
242 } 244 }
243} 245}
244 246
247#endif
248
249
245/* Update the display. 250/* Update the display.
246 This must be called after all other LCD functions that change the display. */ 251 This must be called after all other LCD functions that change the display. */
247void lcd_update(void) ICODE_ATTR; 252void lcd_update(void) ICODE_ATTR;