lv_port_indev.h 850 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. #include "luat_tp.h"
  21. /*********************
  22. * DEFINES
  23. *********************/
  24. /**********************
  25. * TYPEDEFS
  26. **********************/
  27. /**********************
  28. * GLOBAL PROTOTYPES
  29. **********************/
  30. void lv_port_indev_init(luat_tp_config_t *luat_tp_config);
  31. /**********************
  32. * MACROS
  33. **********************/
  34. #ifdef __cplusplus
  35. } /*extern "C"*/
  36. #endif
  37. #endif /*LV_PORT_INDEV_TEMPL_H*/
  38. #endif /*Disable/Enable content*/