Search found 3 matches

by obones
Tue Mar 12, 2024 1:18 pm
Forum: General Discussion
Topic: Deep sleep GPIO wake up method that consumes the least power
Replies: 0
Views: 469

Deep sleep GPIO wake up method that consumes the least power

Hello, I'm using an external trigger to wake up my ESP32-S3 from deep sleep started with esp_deep_sleep_start To configure the GPIO to use, I wrote that code: esp_sleep_enable_ext0_wakeup(GPIO_NUM_9, 0); And this works just fine. But reading the documentation about esp_sleep_enable_ext0_wakeup I saw...
by obones
Mon Aug 22, 2022 9:32 am
Forum: ESP32 Arduino
Topic: How to register a RMT RX callback within ESP32 Arduino?
Replies: 2
Views: 1782

Re: How to register a RMT RX callback within ESP32 Arduino?

Thanks, that occurred to me as well the day after I posted this message. But sadly it did not help for another reason that I overlooked: The project I'm working on is based on the 3.4.0 ESP32 Arduino framework which means it uses a 3.X version of the IDF framework and as such does not have all the n...
by obones
Thu Aug 18, 2022 1:30 pm
Forum: ESP32 Arduino
Topic: How to register a RMT RX callback within ESP32 Arduino?
Replies: 2
Views: 1782

How to register a RMT RX callback within ESP32 Arduino?

Hello, I'm using the ESP32 Arduino framework and was able to setup usage of the RMT module just fine. What I'm trying to do now is to register a RX callback to get notified when the module disables itself because of the idle_threshold being reached. Here is the code that I used: rmt_config_t rmt_rx;...