1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*
- * Copyright 2024 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.
- * 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 */
|