From a5ccda9923ef7f353514d47054b056373994dd2a Mon Sep 17 00:00:00 2001 From: Alessio Caiazza Date: Sun, 28 Nov 2021 14:08:20 +0100 Subject: [PATCH] Fix broken display SDL test display_setBacklightLevel is undefined and not part of the display.h interface. --- tests/platform/display_test_SDL.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/platform/display_test_SDL.c b/tests/platform/display_test_SDL.c index 72ab02c8..03ca53ef 100644 --- a/tests/platform/display_test_SDL.c +++ b/tests/platform/display_test_SDL.c @@ -51,7 +51,6 @@ void drawRect(int x, int y, int width, int height, uint16_t color) int main() { display_init(); - display_setBacklightLevel(254); /* Horizontal red line */ drawRect(0, 10, SCREEN_WIDTH, 20, 0xF800);