summaryrefslogtreecommitdiff
path: root/apps/plugins/lib
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib')
-rw-r--r--apps/plugins/lib/gray_core.c3
-rw-r--r--apps/plugins/lib/gray_draw.c6
2 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/lib/gray_core.c b/apps/plugins/lib/gray_core.c
index f132d00495..d151250e69 100644
--- a/apps/plugins/lib/gray_core.c
+++ b/apps/plugins/lib/gray_core.c
@@ -233,6 +233,9 @@ void gray_show(bool enable)
233 _gray_rb->timer_register(1, NULL, CPU_FREQ / 67, 1, _timer_isr); 233 _gray_rb->timer_register(1, NULL, CPU_FREQ / 67, 1, _timer_isr);
234#elif CONFIG_LCD == LCD_S1D15E06 234#elif CONFIG_LCD == LCD_S1D15E06
235 _gray_rb->timer_register(1, NULL, CPU_FREQ / 70, 1, _timer_isr); 235 _gray_rb->timer_register(1, NULL, CPU_FREQ / 70, 1, _timer_isr);
236#elif CONFIG_LCD == LCD_IFP7XX
237 /* TODO: implement for iFP */
238 (void)_timer_isr;
236#endif 239#endif
237 _gray_rb->screen_dump_set_hook(gray_screendump_hook); 240 _gray_rb->screen_dump_set_hook(gray_screendump_hook);
238 } 241 }
diff --git a/apps/plugins/lib/gray_draw.c b/apps/plugins/lib/gray_draw.c
index 171c5e4a4b..b842658bd7 100644
--- a/apps/plugins/lib/gray_draw.c
+++ b/apps/plugins/lib/gray_draw.c
@@ -904,6 +904,12 @@ static void _writearray(unsigned char *address, const unsigned char *src,
904 : /* clobbers */ 904 : /* clobbers */
905 "d0", "d1", "d2", "d3", "d4", "d5", "d6", "a0", "a1" 905 "d0", "d1", "d2", "d3", "d4", "d5", "d6", "a0", "a1"
906 ); 906 );
907#elif defined(CPU_ARM) && (LCD_DEPTH == 1)
908 /* TODO: implement for iFP */
909 (void)address;
910 (void)src;
911 (void)stride;
912 (void)mask;
907#endif 913#endif
908} 914}
909 915