ft8xx.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Copyright (c) 2020 Hubert Miś
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief FT8XX public API
  9. */
  10. #ifndef ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_H_
  11. #define ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_H_
  12. #include <stdint.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @brief FT8xx driver public APIs
  18. * @defgroup ft8xx_interface FT8xx driver APIs
  19. * @ingroup misc_interfaces
  20. * @{
  21. */
  22. /**
  23. * @struct ft8xx_touch_transform
  24. * @brief Structure holding touchscreen calibration data
  25. *
  26. * The content of this structure is filled by ft8xx_calibrate().
  27. */
  28. struct ft8xx_touch_transform {
  29. uint32_t a;
  30. uint32_t b;
  31. uint32_t c;
  32. uint32_t d;
  33. uint32_t e;
  34. uint32_t f;
  35. };
  36. /**
  37. * @typedef ft8xx_int_callback
  38. * @brief Callback API to inform API user that FT8xx triggered interrupt
  39. *
  40. * This callback is called from IRQ context.
  41. */
  42. typedef void (*ft8xx_int_callback)(void);
  43. /**
  44. * @brief Calibrate touchscreen
  45. *
  46. * Run touchscreen calibration procedure that collectw three touches from touch
  47. * screen. Computed calibration result is automatically applied to the
  48. * touchscreen processing and returned with @p data.
  49. *
  50. * The content of @p data may be stored and used after reset in
  51. * ft8xx_touch_transform_set() to avoid calibrating touchscreen after each
  52. * device reset.
  53. *
  54. * @param data Pointer to touchscreen transform structure to populate
  55. */
  56. void ft8xx_calibrate(struct ft8xx_touch_transform *data);
  57. /**
  58. * @brief Set touchscreen calibration data
  59. *
  60. * Apply given touchscreen transform data to the touchscreen processing.
  61. * Data is to be obtained from calibration procedure started with
  62. * ft8xx_calibrate().
  63. *
  64. * @param data Pointer to touchscreen transform structure to apply
  65. */
  66. void ft8xx_touch_transform_set(const struct ft8xx_touch_transform *data);
  67. /**
  68. * @brief Get tag of recently touched element
  69. *
  70. * @return Tag value 0-255 of recently touched element
  71. */
  72. int ft8xx_get_touch_tag(void);
  73. /**
  74. * @brief Set callback executed when FT8xx triggers interrupt
  75. *
  76. * This function configures FT8xx to trigger interrupt when touch event changes
  77. * tag value.
  78. *
  79. * When touch event changes tag value, FT8xx activates INT line. The line is
  80. * kept active until ft8xx_get_touch_tag() is called. It results in single
  81. * execution of @p callback until ft8xx_get_touch_tag() is called.
  82. *
  83. * @param callback Pointer to function called when FT8xx triggers interrupt
  84. */
  85. void ft8xx_register_int(ft8xx_int_callback callback);
  86. /**
  87. * @}
  88. */
  89. #ifdef __cplusplus
  90. }
  91. #endif
  92. #endif /* ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_H_ */