Search found 6 matches

by sudeep-mohanty
Wed May 22, 2024 10:07 am
Forum: ESP-IDF
Topic: Long critical sections causing missed interrupts
Replies: 1
Views: 742

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: 1066

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: 697

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 yo...
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: 1825

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 subsequen...
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: 908

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: 3110

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