From 32bbbfb9de672b39482967c9b1d7ab5f08e373a5 Mon Sep 17 00:00:00 2001 From: Federico Amedeo Izzo Date: Thu, 26 Nov 2020 22:22:07 +0100 Subject: [PATCH] GFX: Remove missing dots workaround --- openrtx/src/graphics/graphics_rgb565.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/openrtx/src/graphics/graphics_rgb565.c b/openrtx/src/graphics/graphics_rgb565.c index bffb1a45..bcb7487d 100644 --- a/openrtx/src/graphics/graphics_rgb565.c +++ b/openrtx/src/graphics/graphics_rgb565.c @@ -201,11 +201,6 @@ static inline uint16_t get_reset_x(textAlign_t alignment, uint16_t line_size) { void gfx_print(point_t start, const char *text, fontSize_t size, textAlign_t alignment, color_t color) { - OS_ERR os_err; - - // TODO: Without this delay dots are not printed - OSTimeDlyHMSM(0u, 0u, 0u, 1u, OS_OPT_TIME_HMSM_STRICT, &os_err); - rgb565_t color_565 = _true2highColor(color); GFXfont f = fonts[size];