summaryrefslogtreecommitdiff
path: root/firmware/scroll_engine.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/scroll_engine.c')
-rw-r--r--firmware/scroll_engine.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/scroll_engine.c b/firmware/scroll_engine.c
index 63ca8883de..7c66601d6a 100644
--- a/firmware/scroll_engine.c
+++ b/firmware/scroll_engine.c
@@ -46,7 +46,7 @@ struct scrollinfo lcd_scroll[LCD_SCROLLABLE_LINES];
46 46
47#ifdef HAVE_REMOTE_LCD 47#ifdef HAVE_REMOTE_LCD
48struct scrollinfo lcd_remote_scroll[LCD_REMOTE_SCROLLABLE_LINES]; 48struct scrollinfo lcd_remote_scroll[LCD_REMOTE_SCROLLABLE_LINES];
49struct event_queue scroll_queue; 49struct event_queue scroll_queue NOCACHEBSS_ATTR;
50#endif 50#endif
51 51
52struct scroll_screen_info lcd_scroll_info = 52struct scroll_screen_info lcd_scroll_info =
@@ -150,7 +150,7 @@ static void sync_display_ticks(void)
150 150
151static bool scroll_process_message(int delay) 151static bool scroll_process_message(int delay)
152{ 152{
153 struct event ev; 153 struct queue_event ev;
154 154
155 do 155 do
156 { 156 {
@@ -268,7 +268,7 @@ void scroll_init(void)
268 queue_init(&scroll_queue, true); 268 queue_init(&scroll_queue, true);
269#endif 269#endif
270 create_thread(scroll_thread, scroll_stack, 270 create_thread(scroll_thread, scroll_stack,
271 sizeof(scroll_stack), scroll_name 271 sizeof(scroll_stack), 0, scroll_name
272 IF_PRIO(, PRIORITY_USER_INTERFACE) 272 IF_PRIO(, PRIORITY_USER_INTERFACE)
273 IF_COP(, CPU, false)); 273 IF_COP(, CPU));
274} 274}