ft8xx_copro.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * Copyright (c) 2020 Hubert Miś
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief FT8XX coprocessor functions
  9. */
  10. #ifndef ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_COPRO_H_
  11. #define ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_COPRO_H_
  12. #include <stdint.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @brief FT8xx co-processor engine functions
  18. * @defgroup ft8xx_copro FT8xx co-processor
  19. * @ingroup ft8xx_interface
  20. * @{
  21. */
  22. /** Co-processor widget is drawn in 3D effect */
  23. #define FT8XX_OPT_3D 0
  24. /** Co-processor option to decode the JPEG image to RGB565 format */
  25. #define FT8XX_OPT_RGB565 0
  26. /** Co-processor option to decode the JPEG image to L8 format, i.e., monochrome */
  27. #define FT8XX_OPT_MONO 1
  28. /** No display list commands generated for bitmap decoded from JPEG image */
  29. #define FT8XX_OPT_NODL 2
  30. /** Co-processor widget is drawn without 3D effect */
  31. #define FT8XX_OPT_FLAT 256
  32. /** The number is treated as 32 bit signed integer */
  33. #define FT8XX_OPT_SIGNED 256
  34. /** Co-processor widget centers horizontally */
  35. #define FT8XX_OPT_CENTERX 512
  36. /** Co-processor widget centers vertically */
  37. #define FT8XX_OPT_CENTERY 1024
  38. /** Co-processor widget centers horizontally and vertically */
  39. #define FT8XX_OPT_CENTER 1536
  40. /** The label on the Coprocessor widget is right justified */
  41. #define FT8XX_OPT_RIGHTX 2048
  42. /** Co-processor widget has no background drawn */
  43. #define FT8XX_OPT_NOBACK 4096
  44. /** Co-processor clock widget is drawn without hour ticks.
  45. * Gauge widget is drawn without major and minor ticks.
  46. */
  47. #define FT8XX_OPT_NOTICKS 8192
  48. /** Co-processor clock widget is drawn without hour and minutes hands,
  49. * only seconds hand is drawn
  50. */
  51. #define FT8XX_OPT_NOHM 16384
  52. /** The Co-processor gauge has no pointer */
  53. #define FT8XX_OPT_NOPOINTER 16384
  54. /** Co-processor clock widget is drawn without seconds hand */
  55. #define FT8XX_OPT_NOSECS 32768
  56. /** Co-processor clock widget is drawn without hour, minutes and seconds hands */
  57. #define FT8XX_OPT_NOHANDS 49152
  58. /**
  59. * @brief Execute a display list command by co-processor engine
  60. *
  61. * @param cmd Display list command to execute
  62. */
  63. void ft8xx_copro_cmd(uint32_t cmd);
  64. /**
  65. * @brief Start a new display list
  66. */
  67. void ft8xx_copro_cmd_dlstart(void);
  68. /**
  69. * @brief Swap the current display list
  70. */
  71. void ft8xx_copro_cmd_swap(void);
  72. /**
  73. * @brief Draw text
  74. *
  75. * By default (@p x, @p y) is the top-left pixel of the text and the value of
  76. * @p options is zero. @ref FT8XX_OPT_CENTERX centers the text horizontally,
  77. * @ref FT8XX_OPT_CENTERY centers it vertically. @ref FT8XX_OPT_CENTER centers
  78. * the text in both directions. @ref FT8XX_OPT_RIGHTX right-justifies the text,
  79. * so that the @p x is the rightmost pixel.
  80. *
  81. * @param x x-coordinate of text base, in pixels
  82. * @param y y-coordinate of text base, in pixels
  83. * @param font Font to use for text, 0-31. 16-31 are ROM fonts
  84. * @param options Options to apply
  85. * @param s Character string to display, terminated with a null character
  86. */
  87. void ft8xx_copro_cmd_text(int16_t x,
  88. int16_t y,
  89. int16_t font,
  90. uint16_t options,
  91. const char *s);
  92. /**
  93. * @brief Draw a decimal number
  94. *
  95. * By default (@p x, @p y) is the top-left pixel of the text.
  96. * @ref FT8XX_OPT_CENTERX centers the text horizontally, @ref FT8XX_OPT_CENTERY
  97. * centers it vertically. @ref FT8XX_OPT_CENTER centers the text in both
  98. * directions. @ref FT8XX_OPT_RIGHTX right-justifies the text, so that the @p x
  99. * is the rightmost pixel. By default the number is displayed with no leading
  100. * zeroes, but if a width 1-9 is specified in the @p options, then the number
  101. * is padded if necessary with leading zeroes so that it has the given width.
  102. * If @ref FT8XX_OPT_SIGNED is given, the number is treated as signed, and
  103. * prefixed by a minus sign if negative.
  104. *
  105. * @param x x-coordinate of text base, in pixels
  106. * @param y y-coordinate of text base, in pixels
  107. * @param font Font to use for text, 0-31. 16-31 are ROM fonts
  108. * @param options Options to apply
  109. * @param n The number to display.
  110. */
  111. void ft8xx_copro_cmd_number(int16_t x,
  112. int16_t y,
  113. int16_t font,
  114. uint16_t options,
  115. int32_t n);
  116. /**
  117. * @brief Execute the touch screen calibration routine
  118. *
  119. * The calibration procedure collects three touches from the touch screen, then
  120. * computes and loads an appropriate matrix into REG_TOUCH_TRANSFORM_A-F. To
  121. * use it, create a display list and then use CMD_CALIBRATE. The co-processor
  122. * engine overlays the touch targets on the current display list, gathers the
  123. * calibration input and updates REG_TOUCH_TRANSFORM_A-F.
  124. *
  125. * @param result Calibration result, written with 0 on failure of calibration
  126. */
  127. void ft8xx_copro_cmd_calibrate(uint32_t *result);
  128. /**
  129. * @}
  130. */
  131. #ifdef __cplusplus
  132. }
  133. #endif
  134. #endif /* ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_COPRO_H_ */