gt911_sample.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2021-01-13 RiceChen the first version
  9. */
  10. #include "gt911.h"
  11. #define THREAD_PRIORITY 25
  12. #define THREAD_STACK_SIZE 1024
  13. #define THREAD_TIMESLICE 5
  14. static rt_thread_t gt911_thread = RT_NULL;
  15. static rt_sem_t gt911_sem = RT_NULL;
  16. static rt_device_t dev = RT_NULL;
  17. static struct rt_touch_data *read_data;
  18. static struct rt_touch_info info;
  19. static void gt911_entry(void *parameter)
  20. {
  21. rt_device_control(dev, RT_TOUCH_CTRL_GET_INFO, &info);
  22. read_data = (struct rt_touch_data *)rt_malloc(sizeof(struct rt_touch_data) * info.point_num);
  23. while (1)
  24. {
  25. rt_sem_take(gt911_sem, RT_WAITING_FOREVER);
  26. if (rt_device_read(dev, 0, read_data, info.point_num) == info.point_num)
  27. {
  28. for (rt_uint8_t i = 0; i < info.point_num; i++)
  29. {
  30. if (read_data[i].event == RT_TOUCH_EVENT_DOWN || read_data[i].event == RT_TOUCH_EVENT_MOVE)
  31. {
  32. rt_kprintf("%d %d %d %d %d\n", read_data[i].track_id,
  33. read_data[i].x_coordinate,
  34. read_data[i].y_coordinate,
  35. read_data[i].timestamp,
  36. read_data[i].width);
  37. }
  38. }
  39. }
  40. rt_device_control(dev, RT_TOUCH_CTRL_ENABLE_INT, RT_NULL);
  41. }
  42. }
  43. static rt_err_t rx_callback(rt_device_t dev, rt_size_t size)
  44. {
  45. rt_sem_release(gt911_sem);
  46. rt_device_control(dev, RT_TOUCH_CTRL_DISABLE_INT, RT_NULL);
  47. return 0;
  48. }
  49. /* Test function */
  50. int gt911_sample(const char *name, rt_uint16_t x, rt_uint16_t y)
  51. {
  52. void *id;
  53. dev = rt_device_find(name);
  54. if (dev == RT_NULL)
  55. {
  56. rt_kprintf("can't find device:%s\n", name);
  57. return -1;
  58. }
  59. if (rt_device_open(dev, RT_DEVICE_FLAG_INT_RX) != RT_EOK)
  60. {
  61. rt_kprintf("open device failed!");
  62. return -1;
  63. }
  64. id = rt_malloc(sizeof(rt_uint8_t) * 8);
  65. rt_device_control(dev, RT_TOUCH_CTRL_GET_ID, id);
  66. rt_uint8_t * read_id = (rt_uint8_t *)id;
  67. rt_kprintf("id = GT%d%d%d \n", read_id[0] - '0', read_id[1] - '0', read_id[2] - '0');
  68. rt_device_control(dev, RT_TOUCH_CTRL_SET_X_RANGE, &x); /* if possible you can set your x y coordinate*/
  69. rt_device_control(dev, RT_TOUCH_CTRL_SET_Y_RANGE, &y);
  70. rt_device_control(dev, RT_TOUCH_CTRL_GET_INFO, id);
  71. rt_kprintf("range_x = %d \n", (*(struct rt_touch_info*)id).range_x);
  72. rt_kprintf("range_y = %d \n", (*(struct rt_touch_info*)id).range_y);
  73. rt_kprintf("point_num = %d \n", (*(struct rt_touch_info*)id).point_num);
  74. rt_free(id);
  75. rt_device_set_rx_indicate(dev, rx_callback);
  76. gt911_sem = rt_sem_create("dsem", 0, RT_IPC_FLAG_FIFO);
  77. if (gt911_sem == RT_NULL)
  78. {
  79. rt_kprintf("create dynamic semaphore failed.\n");
  80. return -1;
  81. }
  82. gt911_thread = rt_thread_create("gt911",
  83. gt911_entry,
  84. RT_NULL,
  85. THREAD_STACK_SIZE,
  86. THREAD_PRIORITY,
  87. THREAD_TIMESLICE);
  88. if (gt911_thread != RT_NULL)
  89. rt_thread_startup(gt911_thread);
  90. return 0;
  91. }