lvgl.h 630 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * @file lvgl.h
  3. * This file exists only to be compatible with Arduino's library structure
  4. */
  5. #ifndef LVGL_SRC_H
  6. #define LVGL_SRC_H
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. /*********************
  11. * INCLUDES
  12. *********************/
  13. #include "../lvgl.h"
  14. #include "lv_conf_internal.h"
  15. /*********************
  16. * DEFINES
  17. *********************/
  18. /**********************
  19. * TYPEDEFS
  20. **********************/
  21. /**********************
  22. * GLOBAL PROTOTYPES
  23. **********************/
  24. /**********************
  25. * MACROS
  26. **********************/
  27. #ifdef __cplusplus
  28. } /*extern "C"*/
  29. #endif
  30. #endif /* LVGL_SRC_H */