lv_conf_ext.h 958 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright 2024 NXP
  3. * NXP Proprietary. This software is owned or controlled by NXP and may only be used strictly in
  4. * accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing,
  5. * activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to
  6. * comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license
  7. * terms, then you may not retain, install, activate or otherwise use the software.
  8. */
  9. /*
  10. * lv_conf_ext.h for custom lvconf file.
  11. * example :
  12. * #undef LV_FONT_FMT_TXT_LARGE
  13. * #define LV_FONT_FMT_TXT_LARGE 1
  14. */
  15. #ifndef LV_CONF_EXT_H
  16. #define LV_CONF_EXT_H
  17. /* common code begin */
  18. /* common code end */
  19. #if LV_USE_GUIDER_SIMULATOR
  20. /* code for simulator begin */
  21. /* code for simulator end */
  22. #else
  23. /* code for board begin */
  24. /* code for board end */
  25. #endif
  26. #endif /* LV_CONF_EXT_H */