sggt/LVGL/myGUI/custom/lv_conf_ext.h

42 lines
985 B
C

/*
* Copyright 2023 NXP
* NXP Proprietary. This software is owned or controlled by NXP and may only be used strictly in
* accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing,
* activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to
* comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license
* terms, then you may not retain, install, activate or otherwise use the software.
*/
/*
* lv_conf_ext.h for custom lvconf file.
* Created on: Feb 8, 2023
* example :
* #undef LV_FONT_FMT_TXT_LARGE
* #define LV_FONT_FMT_TXT_LARGE 1
*/
#ifndef LV_CONF_EXT_H
#define LV_CONF_EXT_H
/* common code begin */
/* common code end */
#if LV_USE_GUIDER_SIMULATOR
/* code for simulator begin */
/* code for simulator end */
#else
/* code for board begin */
/* code for board end */
#endif
#endif /* LV_CONF_EXT_H */