summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/lcd-recorder.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/firmware/drivers/lcd-recorder.c b/firmware/drivers/lcd-recorder.c
index cf3c7615e1..3d3763ca50 100644
--- a/firmware/drivers/lcd-recorder.c
+++ b/firmware/drivers/lcd-recorder.c
@@ -371,7 +371,7 @@ void lcd_puts_style(int x, int y, unsigned char *str, int style)
371} 371}
372 372
373/* put a string at a given pixel position, skipping first ofs pixel columns */ 373/* put a string at a given pixel position, skipping first ofs pixel columns */
374static void lcd_putsxyofs(int x, int y, int ofs, unsigned char *str) 374static void lcd_putsxyofs(int x, int y, int ofs, const unsigned char *str)
375{ 375{
376 int ch; 376 int ch;
377 struct font* pf = font_get(curfont); 377 struct font* pf = font_get(curfont);
@@ -428,7 +428,7 @@ static void lcd_putsxyofs(int x, int y, int ofs, unsigned char *str)
428} 428}
429 429
430/* put a string at a given pixel position */ 430/* put a string at a given pixel position */
431void lcd_putsxy(int x, int y, unsigned char *str) 431void lcd_putsxy(int x, int y, const unsigned char *str)
432{ 432{
433 lcd_putsxyofs(x, y, 0, str); 433 lcd_putsxyofs(x, y, 0, str);
434} 434}
@@ -450,12 +450,13 @@ void lcd_putsxy(int x, int y, unsigned char *str)
450 * Draw a bitmap at (x, y), size (nx, ny) 450 * Draw a bitmap at (x, y), size (nx, ny)
451 * if 'clear' is true, clear destination area first 451 * if 'clear' is true, clear destination area first
452 */ 452 */
453void lcd_bitmap (unsigned char *src, int x, int y, int nx, int ny, 453void lcd_bitmap (const unsigned char *src, int x, int y, int nx, int ny,
454 bool clear) __attribute__ ((section (".icode"))); 454 bool clear) __attribute__ ((section (".icode")));
455void lcd_bitmap (unsigned char *src, int x, int y, int nx, int ny, 455void lcd_bitmap (const unsigned char *src, int x, int y, int nx, int ny,
456 bool clear) 456 bool clear)
457{ 457{
458 unsigned char *src_col, *dst, *dst_col; 458 const unsigned char *src_col;
459 unsigned char *dst, *dst_col;
459 unsigned int data, mask1, mask2, mask3, mask4; 460 unsigned int data, mask1, mask2, mask3, mask4;
460 int stride, shift; 461 int stride, shift;
461 462