Search found 22 matches

by doragasu
Tue Jan 28, 2025 8:51 am
Forum: General Discussion
Topic: Is it possible to keep UART powered while in light-sleep?
Replies: 6
Views: 3202

Re: Is it possible to keep UART powered while in light-sleep?

Got time to make more tests, this time on the S3, got pretty similar results. Unfortunately, I couldn't get it to reliably receive a 64 byte frame attached to the wakeup character. For about 20 bytes, I could get it to reliably receive by using the RC fast clock for both UART and RTC, and low baud ...
by doragasu
Mon Jan 27, 2025 1:34 pm
Forum: General Discussion
Topic: Is it possible to keep UART powered while in light-sleep?
Replies: 6
Views: 3202

Re: Is it possible to keep UART powered while in light-sleep?

@ves011: thanks a lot for the info. Were you receiving data during light sleep? If you were using the UART only for the debug trace, and did not receive data, that's a different use case.

I have been doing some more tests with the C3 (that I would like to confirm work the same on the S3, but couldn ...
by doragasu
Thu Jan 23, 2025 8:25 am
Forum: General Discussion
Topic: Is it possible to keep UART powered while in light-sleep?
Replies: 6
Views: 3202

Re: Is it possible to keep UART powered while in light-sleep?

But is it possible at all? How? The links provided are quite basic and do not help for my questions.
by doragasu
Wed Jan 22, 2025 1:42 pm
Forum: General Discussion
Topic: Is it possible to keep UART powered while in light-sleep?
Replies: 6
Views: 3202

Is it possible to keep UART powered while in light-sleep?

I am using an ESP32-S3 with two UART connected peripherals.

To reduce power drain, I am using DFS and I want to implement auto light sleep. But when the chip enters light sleep, it looks like the UART stops working (either power is removed, clock is removed or both, I don't know). But I need the ...
by doragasu
Fri Nov 29, 2024 11:52 am
Forum: ESP-IDF
Topic: Light-sleep and GPIOs on ESP32-S3
Replies: 1
Views: 1093

Re: Light-sleep and GPIOs on ESP32-S3

After HOURS of digging, I found the problem.

It looks like by default, pins are configured with IO_MUX_SLP_SEL = 1, because calling gpio_sleep_sel_dis() on a pin, caused it to not drop its value during light sleep.

I wonder why this is the default, doesn't make too much sense to me, but at least I ...
by doragasu
Thu Nov 28, 2024 9:28 am
Forum: ESP-IDF
Topic: Light-sleep and GPIOs on ESP32-S3
Replies: 1
Views: 1093

Light-sleep and GPIOs on ESP32-S3

I am a bit confused with the behavior of GPIO outputs with light sleep. I know that deep sleep deactivates GPIOs unless you configure them to maintain the value (e.g. with rtc_gpio_hold_en()). But I was not expecting light-sleep to also deactivate GPIO outputs.

My code calls esp_pm_configure() with ...
by doragasu
Tue Nov 19, 2024 1:55 pm
Forum: ESP32 Arduino
Topic: disable core 1 for saving power?
Replies: 8
Views: 18587

Re: disable core 1 for saving power?


Yes, you can choose "Run FreeRTOS on first core only" option in menuconfig, Component config > FreeRTOS menu and build the application again. That will disable 2nd CPU and all the tasks will run on the 1st.


Does this really disable the second core? Or will it be active but idling? I have an app ...
by doragasu
Fri Mar 22, 2024 12:35 pm
Forum: Documentation
Topic: esp_modem: unsolicited response, URC
Replies: 2
Views: 23609

Re: esp_modem: unsolicited response, URC

A bit late but today I was wondering the same. It looks like it is possible but not trivial, it involves creating a custom DCE, here is a patch that incorporates it to the console example: https://github.com/espressif/esp-protoc ... 660991194c
by doragasu
Mon Sep 18, 2023 12:20 pm
Forum: Hardware
Topic: ESP32-S3 LNA_IN Impedance
Replies: 3
Views: 5415

Re: ESP32-S3 LNA_IN Impedance

The impedance has not yet been added to the datasheet. Is there any info on this?
by doragasu
Fri Jul 28, 2023 10:44 am
Forum: ESP-IDF
Topic: ESP32 RF Test Tool and TX Tone Functionality
Replies: 3
Views: 7058

Re: ESP32 RF Test Tool and TX Tone Functionality

In an interesting turn of events, this seems to be supported by latest esp-idf (5.1), including documentation and an usage example !

Unfortunately only ESP32-S3 and ESP32-C3 support this feature right now, so for the good old ESP32, we still have no way to do it. I have opened a GitHub issue to see ...

Go to advanced search