mirror of
https://github.com/esphome/esphome.git
synced 2025-09-25 22:52:20 +01:00
* Fix clang-tidy header filter * Allow private members * Fix clang-tidy detections * Run clang-format * Fix remaining detections * Fix graph * Run clang-format
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
#ifdef USE_ESP32_FRAMEWORK_ESP_IDF
|
|
|
|
#include "gpio_idf.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace esp32 {
|
|
|
|
static const char *const TAG = "esp32";
|
|
|
|
bool IDFInternalGPIOPin::isr_service_installed = false; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables)
|
|
|
|
struct ISRPinArg {
|
|
gpio_num_t pin;
|
|
bool inverted;
|
|
};
|
|
|
|
ISRInternalGPIOPin IDFInternalGPIOPin::to_isr() const {
|
|
auto *arg = new ISRPinArg{}; // NOLINT(cppcoreguidelines-owning-memory)
|
|
arg->pin = pin_;
|
|
arg->inverted = inverted_;
|
|
return ISRInternalGPIOPin((void *) arg);
|
|
}
|
|
|
|
std::string IDFInternalGPIOPin::dump_summary() const {
|
|
char buffer[32];
|
|
snprintf(buffer, sizeof(buffer), "GPIO%u", static_cast<uint32_t>(pin_));
|
|
return buffer;
|
|
}
|
|
|
|
} // namespace esp32
|
|
|
|
using namespace esp32;
|
|
|
|
bool IRAM_ATTR ISRInternalGPIOPin::digital_read() {
|
|
auto *arg = reinterpret_cast<ISRPinArg *>(arg_);
|
|
return bool(gpio_get_level(arg->pin)) != arg->inverted;
|
|
}
|
|
void IRAM_ATTR ISRInternalGPIOPin::digital_write(bool value) {
|
|
auto *arg = reinterpret_cast<ISRPinArg *>(arg_);
|
|
gpio_set_level(arg->pin, value != arg->inverted ? 1 : 0);
|
|
}
|
|
void IRAM_ATTR ISRInternalGPIOPin::clear_interrupt() {
|
|
// not supported
|
|
}
|
|
|
|
} // namespace esphome
|
|
|
|
#endif // USE_ESP32_FRAMEWORK_ESP_IDF
|