buttons.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*
  2. * a crude button press/long-press/shift management based on GPIO
  3. *
  4. * (c) Philippe G. 2019, philippe_44@outlook.com
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. */
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <unistd.h>
  23. #include <string.h>
  24. #include "freertos/FreeRTOS.h"
  25. #include "freertos/task.h"
  26. #include "freertos/timers.h"
  27. #include "freertos/queue.h"
  28. #include "esp_system.h"
  29. #include "esp_log.h"
  30. #include "esp_task.h"
  31. #include "driver/gpio.h"
  32. #include "buttons.h"
  33. static const char * TAG = "audio_controls";
  34. static int n_buttons = 0;
  35. #define MAX_BUTTONS 16
  36. #define DEBOUNCE 50
  37. static struct button_s {
  38. void *id;
  39. int gpio, index;
  40. button_handler handler;
  41. struct button_s *shifter;
  42. int long_press;
  43. bool long_timer, shifted, shifting;
  44. int type, level;
  45. TimerHandle_t timer;
  46. } buttons[MAX_BUTTONS];
  47. static xQueueHandle button_evt_queue = NULL;
  48. static void buttons_task(void* arg);
  49. /****************************************************************************************
  50. * GPIO low-level handler
  51. */
  52. static void IRAM_ATTR gpio_isr_handler(void* arg)
  53. {
  54. struct button_s *button = (struct button_s*) arg;
  55. BaseType_t woken = pdFALSE;
  56. if (xTimerGetPeriod(button->timer) > DEBOUNCE / portTICK_RATE_MS) xTimerChangePeriodFromISR(button->timer, DEBOUNCE / portTICK_RATE_MS, &woken); // does that restart the timer?
  57. else xTimerResetFromISR(button->timer, &woken);
  58. // ESP_EARLY_LOGI(TAG, "INT gpio %u level %u", button->gpio, button->level);
  59. }
  60. /****************************************************************************************
  61. * Buttons debounce/longpress timer
  62. */
  63. static void buttons_timer( TimerHandle_t xTimer ) {
  64. struct button_s *button = (struct button_s*) pvTimerGetTimerID (xTimer);
  65. button->level = gpio_get_level(button->gpio);
  66. if (button->shifter && button->shifter->type == button->shifter->level) button->shifter->shifting = true;
  67. if (button->long_press && !button->long_timer && button->level == button->type) {
  68. // detect a long press, so hold event generation
  69. ESP_LOGD(TAG, "setting long timer gpio:%u level:%u", button->gpio, button->level);
  70. xTimerChangePeriod(xTimer, button->long_press / portTICK_RATE_MS, 0);
  71. button->long_timer = true;
  72. } else {
  73. // send a button pressed/released event (content is copied in queue)
  74. ESP_LOGD(TAG, "sending event for gpio:%u level:%u", button->gpio, button->level);
  75. // queue will have a copy of button's context
  76. xQueueSend(button_evt_queue, button, 0);
  77. button->long_timer = false;
  78. }
  79. }
  80. /****************************************************************************************
  81. * Tasks that calls the appropriate functions when buttons are pressed
  82. */
  83. static void buttons_task(void* arg) {
  84. ESP_LOGI(TAG, "starting button tasks");
  85. while (1) {
  86. struct button_s button;
  87. button_event_e event;
  88. button_press_e press;
  89. if (!xQueueReceive(button_evt_queue, &button, portMAX_DELAY)) continue;
  90. event = (button.level == button.type) ? BUTTON_PRESSED : BUTTON_RELEASED;
  91. ESP_LOGD(TAG, "received event:%u from gpio:%u level:%u (timer %u shifting %u)", event, button.gpio, button.level, button.long_timer, button.shifting);
  92. // find if shifting is activated
  93. if (button.shifter && button.shifter->type == button.shifter->level) press = BUTTON_SHIFTED;
  94. else press = BUTTON_NORMAL;
  95. /*
  96. long_timer will be set either because we truly have a long press
  97. or we have a release before the long press timer elapsed, so two
  98. events shall be sent
  99. */
  100. if (button.long_timer) {
  101. if (event == BUTTON_RELEASED) {
  102. // early release of a long-press button, send press/release
  103. if (!button.shifting) {
  104. (*button.handler)(button.id, BUTTON_PRESSED, press, false);
  105. (*button.handler)(button.id, BUTTON_RELEASED, press, false);
  106. }
  107. // button is a copy, so need to go to real context
  108. buttons[button.index].shifting = false;
  109. } else if (!button.shifting) {
  110. // normal long press and not shifting so don't discard
  111. (*button.handler)(button.id, BUTTON_PRESSED, press, true);
  112. }
  113. } else {
  114. // normal press/release of a button or release of a long-press button
  115. if (!button.shifting) (*button.handler)(button.id, event, press, button.long_press);
  116. // button is a copy, so need to go to real context
  117. buttons[button.index].shifting = false;
  118. }
  119. }
  120. }
  121. /****************************************************************************************
  122. * dummy button handler
  123. */
  124. void dummy_handler(void *id, button_event_e event, button_press_e press) {
  125. ESP_LOGW(TAG, "should not be here");
  126. }
  127. /****************************************************************************************
  128. * Create buttons
  129. */
  130. void button_create(void *id, int gpio, int type, bool pull, button_handler handler, int long_press, int shifter_gpio) {
  131. if (n_buttons >= MAX_BUTTONS) return;
  132. ESP_LOGI(TAG, "creating button using GPIO %u, type %u, pull-up/down %u, long press %u shifter %u", gpio, type, pull, long_press, shifter_gpio);
  133. if (!n_buttons) {
  134. button_evt_queue = xQueueCreate(10, sizeof(struct button_s));
  135. gpio_install_isr_service(0);
  136. xTaskCreate(buttons_task, "buttons_task", 8192, NULL, ESP_TASK_PRIO_MIN + 1, NULL);
  137. }
  138. // just in case this structure is allocated in a future release
  139. memset(buttons + n_buttons, 0, sizeof(struct button_s));
  140. // set mandatory parameters
  141. buttons[n_buttons].id = id;
  142. buttons[n_buttons].gpio = gpio;
  143. buttons[n_buttons].handler = handler;
  144. buttons[n_buttons].long_press = long_press;
  145. buttons[n_buttons].level = -1;
  146. buttons[n_buttons].type = type;
  147. buttons[n_buttons].timer = xTimerCreate("buttonTimer", DEBOUNCE / portTICK_RATE_MS, pdFALSE, (void *) &buttons[n_buttons], buttons_timer);
  148. // little trick to find ourselves from queued copy
  149. buttons[n_buttons].index = n_buttons;
  150. for (int i = 0; i < n_buttons; i++) {
  151. if (buttons[i].gpio == shifter_gpio) {
  152. buttons[n_buttons].shifter = buttons + i;
  153. // a shifter must have a long-press handler
  154. if (!buttons[i].long_press) buttons[i].long_press = -1;
  155. break;
  156. }
  157. }
  158. gpio_set_direction(gpio, GPIO_MODE_INPUT);
  159. // we need any edge detection
  160. gpio_set_intr_type(gpio, GPIO_INTR_ANYEDGE);
  161. // do we need pullup or pulldown
  162. if (pull) {
  163. if (type == BUTTON_LOW) gpio_set_pull_mode(gpio, GPIO_PULLUP_ONLY);
  164. else gpio_set_pull_mode(gpio, GPIO_PULLDOWN_ONLY);
  165. }
  166. gpio_isr_handler_add(gpio, gpio_isr_handler, (void*) &buttons[n_buttons]);
  167. gpio_intr_enable(gpio);
  168. n_buttons++;
  169. }