summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-recorder.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-recorder.c')
-rw-r--r--firmware/drivers/lcd-recorder.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/firmware/drivers/lcd-recorder.c b/firmware/drivers/lcd-recorder.c
index fae4ea2945..26112e37dd 100644
--- a/firmware/drivers/lcd-recorder.c
+++ b/firmware/drivers/lcd-recorder.c
@@ -57,16 +57,16 @@
57#define LCD_SET_END_OF_READ_MODIFY_WRITE_MODE ((char)0xEE) 57#define LCD_SET_END_OF_READ_MODIFY_WRITE_MODE ((char)0xEE)
58 58
59/* LCD command codes */ 59/* LCD command codes */
60#define LCD_CNTL_RESET 0xe2 // Software reset 60#define LCD_CNTL_RESET 0xe2 /* Software reset */
61#define LCD_CNTL_POWER 0x2f // Power control 61#define LCD_CNTL_POWER 0x2f /* Power control */
62#define LCD_CNTL_CONTRAST 0x81 // Contrast 62#define LCD_CNTL_CONTRAST 0x81 /* Contrast */
63#define LCD_CNTL_OUTSCAN 0xc8 // Output scan direction 63#define LCD_CNTL_OUTSCAN 0xc8 /* Output scan direction */
64#define LCD_CNTL_SEGREMAP 0xa1 // Segment remap 64#define LCD_CNTL_SEGREMAP 0xa1 /* Segment remap */
65#define LCD_CNTL_DISPON 0xaf // Display on 65#define LCD_CNTL_DISPON 0xaf /* Display on */
66 66
67#define LCD_CNTL_PAGE 0xb0 // Page address 67#define LCD_CNTL_PAGE 0xb0 /* Page address */
68#define LCD_CNTL_HIGHCOL 0x10 // Upper column address 68#define LCD_CNTL_HIGHCOL 0x10 /* Upper column address */
69#define LCD_CNTL_LOWCOL 0x00 // Lower column address 69#define LCD_CNTL_LOWCOL 0x00 /* Lower column address */
70 70
71#define SCROLL_SPACING 3 71#define SCROLL_SPACING 3
72 72