button_gpio.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
  2. *
  3. * SPDX-License-Identifier: Apache-2.0
  4. */
  5. #include "esp_log.h"
  6. #include "driver/gpio.h"
  7. #include "button_gpio.h"
  8. static const char *TAG = "gpio button";
  9. #define GPIO_BTN_CHECK(a, str, ret_val) \
  10. if (!(a)) \
  11. { \
  12. ESP_LOGE(TAG, "%s(%d): %s", __FUNCTION__, __LINE__, str); \
  13. return (ret_val); \
  14. }
  15. esp_err_t button_gpio_init(const button_gpio_config_t *config)
  16. {
  17. GPIO_BTN_CHECK(NULL != config, "Pointer of config is invalid", ESP_ERR_INVALID_ARG);
  18. GPIO_BTN_CHECK(GPIO_IS_VALID_GPIO(config->gpio_num), "GPIO number error", ESP_ERR_INVALID_ARG);
  19. gpio_config_t gpio_conf;
  20. gpio_conf.intr_type = GPIO_INTR_DISABLE;
  21. gpio_conf.mode = GPIO_MODE_INPUT;
  22. gpio_conf.pin_bit_mask = (1ULL << config->gpio_num);
  23. if (config->active_level) {
  24. gpio_conf.pull_down_en = GPIO_PULLDOWN_ENABLE;
  25. gpio_conf.pull_up_en = GPIO_PULLUP_DISABLE;
  26. } else {
  27. gpio_conf.pull_down_en = GPIO_PULLDOWN_DISABLE;
  28. gpio_conf.pull_up_en = GPIO_PULLUP_ENABLE;
  29. }
  30. gpio_config(&gpio_conf);
  31. return ESP_OK;
  32. }
  33. esp_err_t button_gpio_deinit(int gpio_num)
  34. {
  35. return gpio_reset_pin(gpio_num);;
  36. }
  37. uint8_t button_gpio_get_key_level(void *gpio_num)
  38. {
  39. return (uint8_t)gpio_get_level((uint32_t)gpio_num);
  40. }