1 /* 2 * Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef R_GLCDC_CFG_H_ 8 #define R_GLCDC_CFG_H_ 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 #define GLCDC_CFG_PARAM_CHECKING_ENABLE (BSP_CFG_PARAM_CHECKING_ENABLE) 14 #define GLCDC_CFG_COLOR_CORRECTION_ENABLE (true) 15 16 /* Disable DSI function handling */ 17 #ifdef GLCDC_CFG_USING_DSI 18 #undef GLCDC_CFG_USING_DSI 19 #endif 20 21 #ifdef __cplusplus 22 } 23 #endif 24 #endif /* R_GLCDC_CFG_H_ */ 25