buttons.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  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 software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. */
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <unistd.h>
  13. #include <string.h>
  14. #include "freertos/FreeRTOS.h"
  15. #include "freertos/task.h"
  16. #include "freertos/timers.h"
  17. #include "freertos/queue.h"
  18. #include "esp_system.h"
  19. #include "esp_log.h"
  20. #include "esp_task.h"
  21. #include "driver/gpio.h"
  22. #include "driver/rmt.h"
  23. #include "buttons.h"
  24. #include "rotary_encoder.h"
  25. #include "globdefs.h"
  26. static const char * TAG = "buttons";
  27. static int n_buttons = 0;
  28. #define BUTTON_STACK_SIZE 4096
  29. #define MAX_BUTTONS 16
  30. #define DEBOUNCE 50
  31. #define BUTTON_QUEUE_LEN 10
  32. static EXT_RAM_ATTR struct button_s {
  33. void *client;
  34. int gpio;
  35. int debounce;
  36. button_handler handler;
  37. struct button_s *self, *shifter;
  38. int shifter_gpio; // this one is just for post-creation
  39. int long_press;
  40. bool long_timer, shifted, shifting;
  41. int type, level;
  42. TimerHandle_t timer;
  43. } buttons[MAX_BUTTONS];
  44. static struct {
  45. int gpio, level;
  46. struct button_s *button;
  47. } polled_gpio[] = { {36, -1, NULL}, {39, -1, NULL}, {-1, -1, NULL} };
  48. static TimerHandle_t polled_timer;
  49. static EXT_RAM_ATTR struct {
  50. QueueHandle_t queue;
  51. void *client;
  52. rotary_encoder_info_t info;
  53. int A, B, SW;
  54. rotary_handler handler;
  55. } rotary;
  56. static EXT_RAM_ATTR struct {
  57. RingbufHandle_t rb;
  58. infrared_handler handler;
  59. } infrared;
  60. static xQueueHandle button_evt_queue;
  61. static QueueSetHandle_t common_queue_set;
  62. static void buttons_task(void* arg);
  63. /****************************************************************************************
  64. * Start task needed by button,s rotaty and infrared
  65. */
  66. static void common_task_init(void) {
  67. static DRAM_ATTR StaticTask_t xTaskBuffer __attribute__ ((aligned (4)));
  68. static EXT_RAM_ATTR StackType_t xStack[BUTTON_STACK_SIZE] __attribute__ ((aligned (4)));
  69. if (!common_queue_set) {
  70. common_queue_set = xQueueCreateSet(BUTTON_QUEUE_LEN + 1);
  71. xTaskCreateStatic( (TaskFunction_t) buttons_task, "buttons_thread", BUTTON_STACK_SIZE, NULL, ESP_TASK_PRIO_MIN + 2, xStack, &xTaskBuffer);
  72. }
  73. }
  74. /****************************************************************************************
  75. * GPIO low-level handler
  76. */
  77. static void IRAM_ATTR gpio_isr_handler(void* arg)
  78. {
  79. struct button_s *button = (struct button_s*) arg;
  80. BaseType_t woken = pdFALSE;
  81. if (xTimerGetPeriod(button->timer) > button->debounce / portTICK_RATE_MS) xTimerChangePeriodFromISR(button->timer, button->debounce / portTICK_RATE_MS, &woken); // does that restart the timer?
  82. else xTimerResetFromISR(button->timer, &woken);
  83. if (woken) portYIELD_FROM_ISR();
  84. ESP_EARLY_LOGD(TAG, "INT gpio %u level %u", button->gpio, button->level);
  85. }
  86. /****************************************************************************************
  87. * Buttons debounce/longpress timer
  88. */
  89. static void buttons_timer( TimerHandle_t xTimer ) {
  90. struct button_s *button = (struct button_s*) pvTimerGetTimerID (xTimer);
  91. button->level = gpio_get_level(button->gpio);
  92. if (button->shifter && button->shifter->type == button->shifter->level) button->shifter->shifting = true;
  93. if (button->long_press && !button->long_timer && button->level == button->type) {
  94. // detect a long press, so hold event generation
  95. ESP_LOGD(TAG, "setting long timer gpio:%u level:%u", button->gpio, button->level);
  96. xTimerChangePeriod(xTimer, button->long_press / portTICK_RATE_MS, 0);
  97. button->long_timer = true;
  98. } else {
  99. // send a button pressed/released event (content is copied in queue)
  100. ESP_LOGD(TAG, "sending event for gpio:%u level:%u", button->gpio, button->level);
  101. // queue will have a copy of button's context
  102. xQueueSend(button_evt_queue, button, 0);
  103. button->long_timer = false;
  104. }
  105. }
  106. /****************************************************************************************
  107. * Buttons polling timer
  108. */
  109. static void buttons_polling( TimerHandle_t xTimer ) {
  110. for (int i = 0; polled_gpio[i].gpio != -1; i++) {
  111. if (!polled_gpio[i].button) continue;
  112. int level = gpio_get_level(polled_gpio[i].gpio);
  113. if (level != polled_gpio[i].level) {
  114. polled_gpio[i].level = level;
  115. buttons_timer(polled_gpio[i].button->timer);
  116. }
  117. }
  118. }
  119. /****************************************************************************************
  120. * Tasks that calls the appropriate functions when buttons are pressed
  121. */
  122. static void buttons_task(void* arg) {
  123. ESP_LOGI(TAG, "starting button tasks");
  124. while (1) {
  125. QueueSetMemberHandle_t xActivatedMember;
  126. // wait on button, rotary and infrared queues
  127. if ((xActivatedMember = xQueueSelectFromSet( common_queue_set, portMAX_DELAY )) == NULL) continue;
  128. if (xActivatedMember == button_evt_queue) {
  129. struct button_s button;
  130. button_event_e event;
  131. button_press_e press;
  132. // received a button event
  133. xQueueReceive(button_evt_queue, &button, 0);
  134. event = (button.level == button.type) ? BUTTON_PRESSED : BUTTON_RELEASED;
  135. 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);
  136. // find if shifting is activated
  137. if (button.shifter && button.shifter->type == button.shifter->level) press = BUTTON_SHIFTED;
  138. else press = BUTTON_NORMAL;
  139. /*
  140. long_timer will be set either because we truly have a long press
  141. or we have a release before the long press timer elapsed, so two
  142. events shall be sent
  143. */
  144. if (button.long_timer) {
  145. if (event == BUTTON_RELEASED) {
  146. // early release of a long-press button, send press/release
  147. if (!button.shifting) {
  148. (*button.handler)(button.client, BUTTON_PRESSED, press, false);
  149. (*button.handler)(button.client, BUTTON_RELEASED, press, false);
  150. }
  151. // button is a copy, so need to go to real context
  152. button.self->shifting = false;
  153. } else if (!button.shifting) {
  154. // normal long press and not shifting so don't discard
  155. (*button.handler)(button.client, BUTTON_PRESSED, press, true);
  156. }
  157. } else {
  158. // normal press/release of a button or release of a long-press button
  159. if (!button.shifting) (*button.handler)(button.client, event, press, button.long_press);
  160. // button is a copy, so need to go to real context
  161. button.self->shifting = false;
  162. }
  163. } else if (xActivatedMember == rotary.queue) {
  164. rotary_encoder_event_t event = { 0 };
  165. // received a rotary event
  166. xQueueReceive(rotary.queue, &event, 0);
  167. ESP_LOGD(TAG, "Event: position %d, direction %s", event.state.position,
  168. event.state.direction ? (event.state.direction == ROTARY_ENCODER_DIRECTION_CLOCKWISE ? "CW" : "CCW") : "NOT_SET");
  169. rotary.handler(rotary.client, event.state.direction == ROTARY_ENCODER_DIRECTION_CLOCKWISE ?
  170. ROTARY_RIGHT : ROTARY_LEFT, false);
  171. } else {
  172. // this is IR
  173. infrared_receive(infrared.rb, infrared.handler);
  174. }
  175. }
  176. }
  177. /****************************************************************************************
  178. * dummy button handler
  179. */
  180. void dummy_handler(void *id, button_event_e event, button_press_e press) {
  181. ESP_LOGW(TAG, "should not be here");
  182. }
  183. /****************************************************************************************
  184. * Create buttons
  185. */
  186. void button_create(void *client, int gpio, int type, bool pull, int debounce, button_handler handler, int long_press, int shifter_gpio) {
  187. if (n_buttons >= MAX_BUTTONS) return;
  188. ESP_LOGI(TAG, "Creating button using GPIO %u, type %u, pull-up/down %u, long press %u shifter %d", gpio, type, pull, long_press, shifter_gpio);
  189. if (!n_buttons) {
  190. button_evt_queue = xQueueCreate(BUTTON_QUEUE_LEN, sizeof(struct button_s));
  191. common_task_init();
  192. xQueueAddToSet( button_evt_queue, common_queue_set );
  193. }
  194. // just in case this structure is allocated in a future release
  195. memset(buttons + n_buttons, 0, sizeof(struct button_s));
  196. // set mandatory parameters
  197. buttons[n_buttons].client = client;
  198. buttons[n_buttons].gpio = gpio;
  199. buttons[n_buttons].debounce = debounce ? debounce: DEBOUNCE;
  200. buttons[n_buttons].handler = handler;
  201. buttons[n_buttons].long_press = long_press;
  202. buttons[n_buttons].shifter_gpio = shifter_gpio;
  203. buttons[n_buttons].type = type;
  204. buttons[n_buttons].timer = xTimerCreate("buttonTimer", buttons[n_buttons].debounce / portTICK_RATE_MS, pdFALSE, (void *) &buttons[n_buttons], buttons_timer);
  205. buttons[n_buttons].self = buttons + n_buttons;
  206. for (int i = 0; i < n_buttons; i++) {
  207. // first try to find our shifter
  208. if (buttons[i].gpio == shifter_gpio) {
  209. buttons[n_buttons].shifter = buttons + i;
  210. // a shifter must have a long-press handler
  211. if (!buttons[i].long_press) buttons[i].long_press = -1;
  212. }
  213. // then try to see if we are a non-assigned shifter
  214. if (buttons[i].shifter_gpio == gpio) {
  215. buttons[i].shifter = buttons + n_buttons;
  216. ESP_LOGI(TAG, "post-assigned shifter gpio %u", buttons[i].gpio);
  217. }
  218. }
  219. gpio_pad_select_gpio(gpio);
  220. gpio_set_direction(gpio, GPIO_MODE_INPUT);
  221. // we need any edge detection
  222. gpio_set_intr_type(gpio, GPIO_INTR_ANYEDGE);
  223. // do we need pullup or pulldown
  224. if (pull) {
  225. if (GPIO_IS_VALID_OUTPUT_GPIO(gpio)) {
  226. if (type == BUTTON_LOW) gpio_set_pull_mode(gpio, GPIO_PULLUP_ONLY);
  227. else gpio_set_pull_mode(gpio, GPIO_PULLDOWN_ONLY);
  228. } else {
  229. ESP_LOGW(TAG, "cannot set pull up/down for gpio %u", gpio);
  230. }
  231. }
  232. // and initialize level ...
  233. buttons[n_buttons].level = gpio_get_level(gpio);
  234. // nasty ESP32 bug: fire-up constantly INT on GPIO 36/39 if ADC1, AMP, Hall used which WiFi does when PS is activated
  235. for (int i = 0; polled_gpio[i].gpio != -1; i++) if (polled_gpio[i].gpio == gpio) {
  236. if (!polled_timer) {
  237. polled_timer = xTimerCreate("buttonsPolling", 100 / portTICK_RATE_MS, pdTRUE, polled_gpio, buttons_polling);
  238. xTimerStart(polled_timer, portMAX_DELAY);
  239. }
  240. polled_gpio[i].button = buttons + n_buttons;
  241. polled_gpio[i].level = gpio_get_level(gpio);
  242. ESP_LOGW(TAG, "creating polled gpio %u, level %u", gpio, polled_gpio[i].level);
  243. gpio = -1;
  244. break;
  245. }
  246. // only create timers and ISR is this is not a polled gpio
  247. if (gpio != -1) {
  248. gpio_isr_handler_add(gpio, gpio_isr_handler, (void*) &buttons[n_buttons]);
  249. gpio_intr_enable(gpio);
  250. }
  251. n_buttons++;
  252. }
  253. /****************************************************************************************
  254. * Get stored id
  255. */
  256. void *button_get_client(int gpio) {
  257. for (int i = 0; i < n_buttons; i++) {
  258. if (buttons[i].gpio == gpio) return buttons[i].client;
  259. }
  260. return NULL;
  261. }
  262. /****************************************************************************************
  263. * Get stored id
  264. */
  265. bool button_is_pressed(int gpio, void *client) {
  266. for (int i = 0; i < n_buttons; i++) {
  267. if (gpio != -1 && buttons[i].gpio == gpio) return buttons[i].level == buttons[i].type;
  268. else if (client && buttons[i].client == client) return buttons[i].level == buttons[i].type;
  269. }
  270. return false;
  271. }
  272. /****************************************************************************************
  273. * Update buttons
  274. */
  275. void *button_remap(void *client, int gpio, button_handler handler, int long_press, int shifter_gpio) {
  276. int i;
  277. struct button_s *button = NULL;
  278. void *prev_client;
  279. ESP_LOGI(TAG, "remapping GPIO %u, long press %u shifter %u", gpio, long_press, shifter_gpio);
  280. // find button
  281. for (i = 0; i < n_buttons; i++) {
  282. if (buttons[i].gpio == gpio) {
  283. button = buttons + i;
  284. break;
  285. }
  286. }
  287. // don't know what we are doing here
  288. if (!button) return NULL;
  289. prev_client = button->client;
  290. button->client = client;
  291. button->handler = handler;
  292. button->long_press = long_press;
  293. button->shifter_gpio = shifter_gpio;
  294. // find our shifter (if any)
  295. for (i = 0; shifter_gpio != -1 && i < n_buttons; i++) {
  296. if (buttons[i].gpio == shifter_gpio) {
  297. button->shifter = buttons + i;
  298. // a shifter must have a long-press handler
  299. if (!buttons[i].long_press) buttons[i].long_press = -1;
  300. break;
  301. }
  302. }
  303. return prev_client;
  304. }
  305. /****************************************************************************************
  306. * Create rotary encoder
  307. */
  308. static void rotary_button_handler(void *id, button_event_e event, button_press_e mode, bool long_press) {
  309. ESP_LOGI(TAG, "Rotary push-button %d", event);
  310. rotary.handler(id, event == BUTTON_PRESSED ? ROTARY_PRESSED : ROTARY_RELEASED, long_press);
  311. }
  312. /****************************************************************************************
  313. * Create rotary encoder
  314. */
  315. bool create_rotary(void *id, int A, int B, int SW, int long_press, rotary_handler handler) {
  316. // nasty ESP32 bug: fire-up constantly INT on GPIO 36/39 if ADC1, AMP, Hall used which WiFi does when PS is activated
  317. if (A == -1 || B == -1 || A == 36 || A == 39 || B == 36 || B == 39) {
  318. ESP_LOGI(TAG, "Cannot create rotary %d %d", A, B);
  319. return false;
  320. }
  321. rotary.A = A;
  322. rotary.B = B;
  323. rotary.SW = SW;
  324. rotary.client = id;
  325. rotary.handler = handler;
  326. // Initialise the rotary encoder device with the GPIOs for A and B signals
  327. rotary_encoder_init(&rotary.info, A, B);
  328. // Create a queue for events from the rotary encoder driver.
  329. rotary.queue = rotary_encoder_create_queue();
  330. rotary_encoder_set_queue(&rotary.info, rotary.queue);
  331. common_task_init();
  332. xQueueAddToSet( rotary.queue, common_queue_set );
  333. // create companion button if rotary has a switch
  334. if (SW != -1) button_create(id, SW, BUTTON_LOW, true, 0, rotary_button_handler, long_press, -1);
  335. ESP_LOGI(TAG, "Creating rotary encoder A:%d B:%d, SW:%d", A, B, SW);
  336. return true;
  337. }
  338. /****************************************************************************************
  339. * Create Infrared
  340. */
  341. bool create_infrared(int gpio, infrared_handler handler) {
  342. // initialize IR infrastructure
  343. infrared_init(&infrared.rb, gpio);
  344. infrared.handler = handler;
  345. // join the queue set
  346. common_task_init();
  347. xRingbufferAddToQueueSetRead(infrared.rb, common_queue_set);
  348. return (infrared.rb != NULL);
  349. }