lv_port_indev.h 829 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /**
  2. * @file lv_port_indev_templ.h
  3. *
  4. */
  5. /*Copy this file as "lv_port_indev.h" and set this value to "1" to enable content*/
  6. #if 1
  7. #ifndef LV_PORT_INDEV_TEMPL_H
  8. #define LV_PORT_INDEV_TEMPL_H
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /*********************
  13. * INCLUDES
  14. *********************/
  15. #if defined(LV_LVGL_H_INCLUDE_SIMPLE)
  16. #include "lvgl.h"
  17. #else
  18. #include "../lvgl.h"
  19. #endif
  20. /*********************
  21. * DEFINES
  22. *********************/
  23. /**********************
  24. * TYPEDEFS
  25. **********************/
  26. /**********************
  27. * GLOBAL PROTOTYPES
  28. **********************/
  29. void lv_port_indev_init(luat_tp_config_t *luat_tp_config);
  30. /**********************
  31. * MACROS
  32. **********************/
  33. #ifdef __cplusplus
  34. } /*extern "C"*/
  35. #endif
  36. #endif /*LV_PORT_INDEV_TEMPL_H*/
  37. #endif /*Disable/Enable content*/