Search found 8 matches

by sudeep-mohanty
Wed Mar 04, 2026 10:53 am
Forum: ESP-IDF
Topic: Build System V2 - Example Code?
Replies: 5
Views: 653

Re: Build System V2 - Example Code?

Hi,

We now have Build System v2 examples available for exploration:
https://github.com/espressif/esp-idf/tree/master/examples/build_system/cmakev2/

Please feel free to try them out and share any feedback, comments, or issues you encounter. Your input will help us improve the new build system ...
by sudeep-mohanty
Fri Jan 10, 2025 11:19 am
Forum: ESP-IDF
Topic: ESP32-S3 ULP power consumption
Replies: 22
Views: 87962

Re: ESP32-S3 ULP power consumption

Unfortunately, there is no good way to deal with this. The ADC will draw extra power when in deep sleep, unless it is turned off before entering sleep. Turning it off and on from the ULP has had some concerns regarding reliability of the ADC measurements.
by sudeep-mohanty
Wed May 22, 2024 10:07 am
Forum: ESP-IDF
Topic: Long critical sections causing missed interrupts
Replies: 1
Views: 1280

Re: Long critical sections causing missed interrupts

Thanks for reporting this issue. We have opened a ticket internally for it and will investigate the potentially long calculations being done in the critical section.
by sudeep-mohanty
Mon May 20, 2024 2:36 pm
Forum: General Discussion
Topic: Disable components from IDF
Replies: 2
Views: 2389

Re: Disable components from IDF

Hi, In your project level CMakeLists.txt file, you may set COMPONENTS like

Code: Select all

set(COMPONENTS main)
before the call to

Code: Select all

project()
to restrict the number of components that are built.
by sudeep-mohanty
Fri May 17, 2024 8:38 am
Forum: ESP-IDF
Topic: Is there a way to run console on both usb_serial_jtag and UART for ESP32-S3?
Replies: 2
Views: 1263

Re: Is there a way to run console on both usb_serial_jtag and UART for ESP32-S3?

Hi,
Currently the esp_console does not support simultaneous inputs on both ports. This is a feature which has been requested before and we do have it in our roadmap. Please have a look at this ticket - https://github.com/espressif/esp-idf/issues/9986.

May I ask what is your use-case and why would ...
by sudeep-mohanty
Thu Oct 05, 2023 11:28 am
Forum: General Discussion
Topic: xTaskCreate: Passing and reading structs in function loop
Replies: 4
Views: 2987

Re: xTaskCreate: Passing and reading structs in function loop

Well, this is not an anomaly. The reason why the same value is printed after the first when you pass the address of the struct is because it is the same address that gets passed to each of the 4 tasks. And as it happens, the last value populated in the struct is printed by all the tasks in ...
by sudeep-mohanty
Wed Sep 20, 2023 6:57 am
Forum: General Discussion
Topic: ULP Wakeup GPIO-interrupt figure out what pin caused it to wake up
Replies: 1
Views: 1252

Re: ULP Wakeup GPIO-interrupt figure out what pin caused it to wake up

You could configure different GPIOs to control selective wakeup. An example of using GPIO#0 is here - https://github.com/espressif/esp-idf/bl ... main.c#L26.
I suppose you could employ a similar logic.
by sudeep-mohanty
Tue Aug 15, 2023 10:52 am
Forum: Hardware
Topic: Pin Function/ Descriptions
Replies: 3
Views: 4972

Re: Pin Function/ Descriptions

Hi Ben,
Yes you can use GPIO1 as the SDA pin and GPIO2 as the SCL pin when using the ULP I2C. You would need to update the i2c_pin_cfg when initializing the ULP I2C - https://github.com/espressif/esp-idf/bl ... _i2c.h#L44

Go to advanced search