You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1002 B
42 lines
1002 B
|
1 week ago
|
/*
|
||
|
|
* Copyright 2023 NXP
|
||
|
|
* NXP Confidential and 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 */
|