buttons.c 17 KB

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