custom.c 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. * INCLUDES
  11. *********************/
  12. #include <stdio.h>
  13. #include "lvgl.h"
  14. #include "custom.h"
  15. /*********************
  16. * DEFINES
  17. *********************/
  18. /**********************
  19. * TYPEDEFS
  20. **********************/
  21. /**********************
  22. * STATIC PROTOTYPES
  23. **********************/
  24. /**********************
  25. * STATIC VARIABLES
  26. **********************/
  27. /**
  28. * Create a demo application
  29. */
  30. void custom_init(lv_ui *ui)
  31. {
  32. /* Add your codes here */
  33. }