summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/lcd-h100.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/lcd-h100.c b/firmware/drivers/lcd-h100.c
index 82537e439b..0e6c82a9b1 100644
--- a/firmware/drivers/lcd-h100.c
+++ b/firmware/drivers/lcd-h100.c
@@ -77,7 +77,7 @@ struct scrollinfo {
77static volatile int scrolling_lines=0; /* Bitpattern of which lines are scrolling */ 77static volatile int scrolling_lines=0; /* Bitpattern of which lines are scrolling */
78 78
79static void scroll_thread(void); 79static void scroll_thread(void);
80static char scroll_stack[DEFAULT_STACK_SIZE]; 80static long scroll_stack[DEFAULT_STACK_SIZE/sizeof(long)];
81static const char scroll_name[] = "scroll"; 81static const char scroll_name[] = "scroll";
82static char scroll_ticks = 12; /* # of ticks between updates*/ 82static char scroll_ticks = 12; /* # of ticks between updates*/
83static int scroll_delay = HZ/2; /* ticks delay before start */ 83static int scroll_delay = HZ/2; /* ticks delay before start */
@@ -104,7 +104,7 @@ static const unsigned char ones[16] = {
104 104
105int lcd_default_contrast(void) 105int lcd_default_contrast(void)
106{ 106{
107 return 32; 107 return 28;
108} 108}
109 109
110#ifdef SIMULATOR 110#ifdef SIMULATOR