mirror of
https://github.com/espressif/esp-rainmaker.git
synced 2026-01-15 02:12:26 +00:00
- qrcode, ws2812_led and gpio_button moved to examples/common - esp-insights and rmaker_common submodules updated - json_generator and json_parser components copied from component manager so that they can be used for component overrides
354 lines
12 KiB
C
354 lines
12 KiB
C
// Copyright 2020 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include <stdio.h>
|
|
#include <freertos/FreeRTOS.h>
|
|
#include <freertos/task.h>
|
|
#include <freertos/queue.h>
|
|
#include <freertos/timers.h>
|
|
#include <esp_log.h>
|
|
#include <driver/gpio.h>
|
|
#include <iot_button.h>
|
|
|
|
#define IOT_CHECK(tag, a, ret) if(!(a)) { \
|
|
ESP_LOGE(tag,"%s:%d (%s)", __FILE__, __LINE__, __FUNCTION__); \
|
|
return (ret); \
|
|
}
|
|
#define ERR_ASSERT(tag, param) IOT_CHECK(tag, (param) == ESP_OK, ESP_FAIL)
|
|
#define POINT_ASSERT(tag, param, ret) IOT_CHECK(tag, (param) != NULL, (ret))
|
|
|
|
typedef enum {
|
|
BUTTON_STATE_IDLE = 0,
|
|
BUTTON_STATE_PUSH,
|
|
BUTTON_STATE_PRESSED,
|
|
} button_status_t;
|
|
|
|
typedef struct button_dev button_dev_t;
|
|
typedef struct btn_cb button_cb_t;
|
|
|
|
struct btn_cb{
|
|
TickType_t interval;
|
|
button_cb cb;
|
|
void* arg;
|
|
uint8_t on_press;
|
|
TimerHandle_t tmr;
|
|
button_dev_t *pbtn;
|
|
button_cb_t *next_cb;
|
|
};
|
|
|
|
struct button_dev{
|
|
uint8_t io_num;
|
|
uint8_t active_level;
|
|
uint32_t serial_thres_sec;
|
|
uint8_t taskq_on;
|
|
QueueHandle_t taskq;
|
|
QueueHandle_t argq;
|
|
button_status_t state;
|
|
button_cb_t tap_short_cb;
|
|
button_cb_t tap_psh_cb;
|
|
button_cb_t tap_rls_cb;
|
|
button_cb_t press_serial_cb;
|
|
button_cb_t* cb_head;
|
|
};
|
|
|
|
#define BUTTON_GLITCH_FILTER_TIME_MS CONFIG_IO_GLITCH_FILTER_TIME_MS
|
|
static const char* TAG = "button";
|
|
|
|
static void button_press_cb(TimerHandle_t tmr)
|
|
{
|
|
button_cb_t* btn_cb = (button_cb_t*) pvTimerGetTimerID(tmr);
|
|
button_dev_t* btn = btn_cb->pbtn;
|
|
// low, then restart
|
|
if (btn->active_level == gpio_get_level(btn->io_num)) {
|
|
btn->state = BUTTON_STATE_PRESSED;
|
|
if (btn->taskq != NULL && btn->argq != NULL && btn->taskq_on && !btn_cb->on_press) {
|
|
void *tmp = btn_cb->cb;
|
|
xQueueOverwrite(btn->taskq, &tmp);
|
|
xQueueOverwrite(btn->argq, &btn_cb->arg);
|
|
} else if (btn_cb->cb) {
|
|
btn_cb->cb(btn_cb->arg);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void button_tap_psh_cb(TimerHandle_t tmr)
|
|
{
|
|
button_cb_t* btn_cb = (button_cb_t*) pvTimerGetTimerID(tmr);
|
|
button_dev_t* btn = btn_cb->pbtn;
|
|
xTimerStop(btn->tap_rls_cb.tmr, portMAX_DELAY);
|
|
int lv = gpio_get_level(btn->io_num);
|
|
|
|
if (btn->active_level == lv) {
|
|
// True implies key is pressed
|
|
btn->state = BUTTON_STATE_PUSH;
|
|
if (btn->press_serial_cb.tmr) {
|
|
xTimerChangePeriod(btn->press_serial_cb.tmr, btn->serial_thres_sec*1000 / portTICK_PERIOD_MS, portMAX_DELAY);
|
|
xTimerReset(btn->press_serial_cb.tmr, portMAX_DELAY);
|
|
}
|
|
if (btn->tap_psh_cb.cb) {
|
|
btn->tap_psh_cb.cb(btn->tap_psh_cb.arg);
|
|
}
|
|
} else {
|
|
// 50ms, check if this is a real key up
|
|
if (btn->tap_rls_cb.tmr) {
|
|
xTimerStop(btn->tap_rls_cb.tmr, portMAX_DELAY);
|
|
xTimerReset(btn->tap_rls_cb.tmr, portMAX_DELAY);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void button_tap_rls_cb(TimerHandle_t tmr)
|
|
{
|
|
button_cb_t* btn_cb = (button_cb_t*) pvTimerGetTimerID(tmr);
|
|
button_dev_t* btn = btn_cb->pbtn;
|
|
xTimerStop(btn->tap_rls_cb.tmr, portMAX_DELAY);
|
|
if (btn->active_level == gpio_get_level(btn->io_num)) {
|
|
|
|
} else {
|
|
// high, then key is up
|
|
button_cb_t *pcb = btn->cb_head;
|
|
while (pcb != NULL) {
|
|
if (pcb->tmr != NULL) {
|
|
xTimerStop(pcb->tmr, portMAX_DELAY);
|
|
}
|
|
pcb = pcb->next_cb;
|
|
}
|
|
if (btn->taskq != NULL && btn->argq != NULL && btn->taskq_on && uxQueueMessagesWaiting(btn->taskq) != 0 && btn->state != BUTTON_STATE_IDLE) {
|
|
void (*task)(void*);
|
|
void *arg;
|
|
xQueueReceive(btn->taskq, &task, 0);
|
|
xQueueReceive(btn->argq, &arg, 0);
|
|
task(arg);
|
|
}
|
|
if (btn->press_serial_cb.tmr && btn->press_serial_cb.tmr != NULL) {
|
|
xTimerStop(btn->press_serial_cb.tmr, portMAX_DELAY);
|
|
}
|
|
if (btn->tap_short_cb.cb && btn->state == BUTTON_STATE_PUSH) {
|
|
btn->tap_short_cb.cb(btn->tap_short_cb.arg);
|
|
}
|
|
if(btn->tap_rls_cb.cb && btn->state != BUTTON_STATE_IDLE) {
|
|
btn->tap_rls_cb.cb(btn->tap_rls_cb.arg);
|
|
}
|
|
btn->state = BUTTON_STATE_IDLE;
|
|
}
|
|
}
|
|
|
|
static void button_press_serial_cb(TimerHandle_t tmr)
|
|
{
|
|
button_dev_t* btn = (button_dev_t*) pvTimerGetTimerID(tmr);
|
|
if (btn->press_serial_cb.cb) {
|
|
btn->press_serial_cb.cb(btn->press_serial_cb.arg);
|
|
}
|
|
xTimerChangePeriod(btn->press_serial_cb.tmr, btn->press_serial_cb.interval, portMAX_DELAY);
|
|
xTimerReset(btn->press_serial_cb.tmr, portMAX_DELAY);
|
|
}
|
|
|
|
static void button_gpio_isr_handler(void* arg)
|
|
{
|
|
button_dev_t* btn = (button_dev_t*) arg;
|
|
portBASE_TYPE HPTaskAwoken = pdFALSE;
|
|
int level = gpio_get_level(btn->io_num);
|
|
if (level == btn->active_level) {
|
|
if (btn->tap_psh_cb.tmr) {
|
|
xTimerStopFromISR(btn->tap_psh_cb.tmr, &HPTaskAwoken);
|
|
xTimerResetFromISR(btn->tap_psh_cb.tmr, &HPTaskAwoken);
|
|
}
|
|
|
|
button_cb_t *pcb = btn->cb_head;
|
|
while (pcb != NULL) {
|
|
if (pcb->tmr != NULL) {
|
|
xTimerStopFromISR(pcb->tmr, &HPTaskAwoken);
|
|
xTimerResetFromISR(pcb->tmr, &HPTaskAwoken);
|
|
}
|
|
pcb = pcb->next_cb;
|
|
}
|
|
} else {
|
|
// 50ms, check if this is a real key up
|
|
if (btn->tap_rls_cb.tmr) {
|
|
xTimerStopFromISR(btn->tap_rls_cb.tmr, &HPTaskAwoken);
|
|
xTimerResetFromISR(btn->tap_rls_cb.tmr, &HPTaskAwoken);
|
|
}
|
|
}
|
|
if(HPTaskAwoken == pdTRUE) {
|
|
portYIELD_FROM_ISR();
|
|
}
|
|
}
|
|
|
|
static void button_free_tmr(TimerHandle_t* tmr)
|
|
{
|
|
if (tmr && *tmr) {
|
|
xTimerStop(*tmr, portMAX_DELAY);
|
|
xTimerDelete(*tmr, portMAX_DELAY);
|
|
*tmr = NULL;
|
|
}
|
|
}
|
|
|
|
esp_err_t iot_button_delete(button_handle_t btn_handle)
|
|
{
|
|
POINT_ASSERT(TAG, btn_handle, ESP_ERR_INVALID_ARG);
|
|
button_dev_t* btn = (button_dev_t*) btn_handle;
|
|
gpio_set_intr_type(btn->io_num, GPIO_INTR_DISABLE);
|
|
gpio_isr_handler_remove(btn->io_num);
|
|
|
|
button_free_tmr(&btn->tap_rls_cb.tmr);
|
|
button_free_tmr(&btn->tap_psh_cb.tmr);
|
|
button_free_tmr(&btn->tap_short_cb.tmr);
|
|
button_free_tmr(&btn->press_serial_cb.tmr);
|
|
|
|
button_cb_t *pcb = btn->cb_head;
|
|
while (pcb != NULL) {
|
|
button_cb_t *cb_next = pcb->next_cb;
|
|
button_free_tmr(&pcb->tmr);
|
|
free(pcb);
|
|
pcb = cb_next;
|
|
}
|
|
free(btn);
|
|
return ESP_OK;
|
|
}
|
|
|
|
button_handle_t iot_button_create(gpio_num_t gpio_num, button_active_t active_level)
|
|
{
|
|
IOT_CHECK(TAG, gpio_num < GPIO_NUM_MAX, NULL);
|
|
button_dev_t* btn = (button_dev_t*) calloc(1, sizeof(button_dev_t));
|
|
POINT_ASSERT(TAG, btn, NULL);
|
|
btn->active_level = active_level;
|
|
btn->io_num = gpio_num;
|
|
btn->state = BUTTON_STATE_IDLE;
|
|
btn->taskq_on = 0;
|
|
btn->taskq = xQueueCreate(1, sizeof(void*));
|
|
btn->argq = xQueueCreate(1, sizeof(void *));
|
|
btn->tap_rls_cb.arg = NULL;
|
|
btn->tap_rls_cb.cb = NULL;
|
|
btn->tap_rls_cb.interval = BUTTON_GLITCH_FILTER_TIME_MS / portTICK_PERIOD_MS;
|
|
btn->tap_rls_cb.pbtn = btn;
|
|
btn->tap_rls_cb.tmr = xTimerCreate("btn_rls_tmr", btn->tap_rls_cb.interval, pdFALSE,
|
|
&btn->tap_rls_cb, button_tap_rls_cb);
|
|
btn->tap_psh_cb.arg = NULL;
|
|
btn->tap_psh_cb.cb = NULL;
|
|
btn->tap_psh_cb.interval = BUTTON_GLITCH_FILTER_TIME_MS / portTICK_PERIOD_MS;
|
|
btn->tap_psh_cb.pbtn = btn;
|
|
btn->tap_psh_cb.tmr = xTimerCreate("btn_psh_tmr", btn->tap_psh_cb.interval, pdFALSE,
|
|
&btn->tap_psh_cb, button_tap_psh_cb);
|
|
gpio_install_isr_service(0);
|
|
gpio_config_t gpio_conf;
|
|
gpio_conf.intr_type = GPIO_INTR_ANYEDGE;
|
|
gpio_conf.mode = GPIO_MODE_INPUT;
|
|
gpio_conf.pin_bit_mask = (uint64_t)1 << gpio_num;
|
|
gpio_conf.pull_down_en = GPIO_PULLDOWN_DISABLE;
|
|
gpio_conf.pull_up_en = GPIO_PULLUP_ENABLE;
|
|
gpio_config(&gpio_conf);
|
|
gpio_isr_handler_add(gpio_num, button_gpio_isr_handler, btn);
|
|
return (button_handle_t) btn;
|
|
}
|
|
|
|
esp_err_t iot_button_rm_cb(button_handle_t btn_handle, button_cb_type_t type)
|
|
{
|
|
button_dev_t* btn = (button_dev_t*) btn_handle;
|
|
button_cb_t* btn_cb = NULL;
|
|
if (type == BUTTON_CB_PUSH) {
|
|
btn_cb = &btn->tap_psh_cb;
|
|
} else if (type == BUTTON_CB_RELEASE) {
|
|
btn_cb = &btn->tap_rls_cb;
|
|
} else if (type == BUTTON_CB_TAP) {
|
|
btn_cb = &btn->tap_short_cb;
|
|
} else if (type == BUTTON_CB_SERIAL) {
|
|
btn_cb = &btn->press_serial_cb;
|
|
}
|
|
btn_cb->cb = NULL;
|
|
btn_cb->arg = NULL;
|
|
btn_cb->pbtn = btn;
|
|
button_free_tmr(&btn_cb->tmr);
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t iot_button_set_serial_cb(button_handle_t btn_handle, uint32_t start_after_sec, TickType_t interval_tick, button_cb cb, void* arg)
|
|
{
|
|
button_dev_t* btn = (button_dev_t*) btn_handle;
|
|
btn->serial_thres_sec = start_after_sec;
|
|
if (btn->press_serial_cb.tmr == NULL) {
|
|
btn->press_serial_cb.tmr = xTimerCreate("btn_serial_tmr", btn->serial_thres_sec*1000 / portTICK_PERIOD_MS,
|
|
pdFALSE, btn, button_press_serial_cb);
|
|
}
|
|
btn->press_serial_cb.arg = arg;
|
|
btn->press_serial_cb.cb = cb;
|
|
btn->press_serial_cb.interval = interval_tick;
|
|
btn->press_serial_cb.pbtn = btn;
|
|
xTimerChangePeriod(btn->press_serial_cb.tmr, btn->serial_thres_sec*1000 / portTICK_PERIOD_MS, portMAX_DELAY);
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t iot_button_set_evt_cb(button_handle_t btn_handle, button_cb_type_t type, button_cb cb, void* arg)
|
|
{
|
|
POINT_ASSERT(TAG, btn_handle, ESP_ERR_INVALID_ARG);
|
|
button_dev_t* btn = (button_dev_t*) btn_handle;
|
|
if (type == BUTTON_CB_PUSH) {
|
|
btn->tap_psh_cb.arg = arg;
|
|
btn->tap_psh_cb.cb = cb;
|
|
btn->tap_psh_cb.interval = BUTTON_GLITCH_FILTER_TIME_MS / portTICK_PERIOD_MS;
|
|
btn->tap_psh_cb.pbtn = btn;
|
|
xTimerChangePeriod(btn->tap_psh_cb.tmr, btn->tap_psh_cb.interval, portMAX_DELAY);
|
|
} else if (type == BUTTON_CB_RELEASE) {
|
|
btn->tap_rls_cb.arg = arg;
|
|
btn->tap_rls_cb.cb = cb;
|
|
btn->tap_rls_cb.interval = BUTTON_GLITCH_FILTER_TIME_MS / portTICK_PERIOD_MS;
|
|
btn->tap_rls_cb.pbtn = btn;
|
|
xTimerChangePeriod(btn->tap_rls_cb.tmr, btn->tap_psh_cb.interval, portMAX_DELAY);
|
|
} else if (type == BUTTON_CB_TAP) {
|
|
btn->tap_short_cb.arg = arg;
|
|
btn->tap_short_cb.cb = cb;
|
|
btn->tap_short_cb.interval = BUTTON_GLITCH_FILTER_TIME_MS / portTICK_PERIOD_MS;
|
|
btn->tap_short_cb.pbtn = btn;
|
|
} else if (type == BUTTON_CB_SERIAL) {
|
|
iot_button_set_serial_cb(btn_handle, 1, 1000 / portTICK_PERIOD_MS, cb, arg);
|
|
}
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t iot_button_add_on_press_cb(button_handle_t btn_handle, uint32_t press_sec, button_cb cb, void* arg)
|
|
{
|
|
POINT_ASSERT(TAG, btn_handle, ESP_ERR_INVALID_ARG);
|
|
IOT_CHECK(TAG, press_sec != 0, ESP_ERR_INVALID_ARG);
|
|
button_dev_t* btn = (button_dev_t*) btn_handle;
|
|
button_cb_t* cb_new = (button_cb_t*) calloc(1, sizeof(button_cb_t));
|
|
POINT_ASSERT(TAG, cb_new, ESP_FAIL);
|
|
cb_new->on_press = 1;
|
|
cb_new->arg = arg;
|
|
cb_new->cb = cb;
|
|
cb_new->interval = press_sec * 1000 / portTICK_PERIOD_MS;
|
|
cb_new->pbtn = btn;
|
|
cb_new->tmr = xTimerCreate("btn_press_tmr", cb_new->interval, pdFALSE, cb_new, button_press_cb);
|
|
cb_new->next_cb = btn->cb_head;
|
|
btn->cb_head = cb_new;
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t iot_button_add_on_release_cb(button_handle_t btn_handle, uint32_t press_sec, button_cb cb, void* arg)
|
|
{
|
|
POINT_ASSERT(TAG, btn_handle, ESP_ERR_INVALID_ARG);
|
|
IOT_CHECK(TAG, press_sec != 0, ESP_ERR_INVALID_ARG);
|
|
button_dev_t* btn = (button_dev_t*) btn_handle;
|
|
button_cb_t* cb_new = (button_cb_t*) calloc(1, sizeof(button_cb_t));
|
|
POINT_ASSERT(TAG, cb_new, ESP_FAIL);
|
|
btn->taskq_on = 1;
|
|
cb_new->arg = arg;
|
|
cb_new->cb = cb;
|
|
cb_new->interval = press_sec * 1000 / portTICK_PERIOD_MS;
|
|
cb_new->pbtn = btn;
|
|
cb_new->tmr = xTimerCreate("btn_press_tmr", cb_new->interval, pdFALSE, cb_new, button_press_cb);
|
|
cb_new->next_cb = btn->cb_head;
|
|
btn->cb_head = cb_new;
|
|
return ESP_OK;
|
|
}
|
|
|