From 690454558ea77f7bbe94e76e7f5d1831c707cf63 Mon Sep 17 00:00:00 2001 From: Lucas Saavedra Vaz Date: Tue, 18 Apr 2023 11:46:44 -0300 Subject: [PATCH] boards/xtensa/esp32: Ensure that DISPLAY_BCKL exists for ILI9341 --- boards/xtensa/esp32/common/src/esp32_ili9341.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boards/xtensa/esp32/common/src/esp32_ili9341.c b/boards/xtensa/esp32/common/src/esp32_ili9341.c index ad92988397f..d99ea2d967e 100644 --- a/boards/xtensa/esp32/common/src/esp32_ili9341.c +++ b/boards/xtensa/esp32/common/src/esp32_ili9341.c @@ -54,6 +54,9 @@ #ifndef DISPLAY_DC # error "DISPLAY_DC must be defined in board.h!" #endif +#ifndef DISPLAY_BCKL +# error "DISPLAY_BCKL must be defined in board.h!" +#endif #ifndef DISPLAY_SPI # error "DISPLAY_SPI must be defined in board.h!" #endif