Search found 566 matches

by boarchuz
Mon Dec 19, 2022 1:33 pm
Forum: ESP-IDF
Topic: [SOLVED] Best practice to avoid wdt trigger
Replies: 9
Views: 6576

Re: Best practice to avoid wdt trigger

In my opinion you should just disable the task watchdog. It's there to ensure that tasks (usually only idleTask) aren't unexpectedly starved. If you know that lower priority tasks will always be starved, by design, then it doesn't make much sense for the watchdog to panic about it. With a big discla...
by boarchuz
Wed Dec 07, 2022 3:41 pm
Forum: IDEs for ESP-IDF
Topic: VSC installation BUG
Replies: 25
Views: 13842

Re: VSC installation BUG

A: I do this and not worked. how exactly am i supposed to do this? set(EXTRA_COMPONENT_DIRS "${CMAKE_SOURCE_DIR}/components/ui/drv" "${CMAKE_SOURCE_DIR}/components/communication/my_wifi" "${CMAKE_SOURCE_DIR}/components/communication/my_server" ) Remember to do a fullclean. I might be off the mark i...
by boarchuz
Wed Dec 07, 2022 11:19 am
Forum: IDEs for ESP-IDF
Topic: VSC installation BUG
Replies: 25
Views: 13842

Re: VSC installation BUG

Component directory C:/projects/project_folder/components/communication does not contain a CMakeLists.txt file. No component will be added. Component directory C:/projects/project_folder/components/ui does not contain a CMakeLists.txt file. No component will be added. This error does look correct, ...
by boarchuz
Wed Dec 07, 2022 11:00 am
Forum: ESP-IDF
Topic: Calling or initilising I2C from within a task
Replies: 5
Views: 1643

Re: Calling or initilising I2C from within a task

Try a larger stack size (eg. 4096).

Is anything connected to GPIO 40? Are you using JTAG? Does a different pin number change the behaviour?
by boarchuz
Sat Dec 03, 2022 11:01 am
Forum: General Discussion
Topic: Chip details are visible when chip is getting connected to Wi-FI
Replies: 8
Views: 3532

Re: Chip details are visible when chip is getting connected to Wi-FI

Code: Select all

config LWIP_LOCAL_HOSTNAME
        string "Local netif hostname"
        default 'espressif'
        help
            The default name this device will report to other devices on the network.
            Could be updated at runtime with esp_netif_set_hostname()
by boarchuz
Wed Nov 30, 2022 2:10 pm
Forum: General Discussion
Topic: <15ms boot, project approach
Replies: 6
Views: 1902

Re: <15ms boot, project approach

I don't know how you get thoose numbers (8uA) , the most conservative approach I can think of is 2ms ON, 13ms OFF permanently, that is 12% of the time ON, so atleast 12uA, just asking Tbh I don't understand what exactly you're trying to measure. Is it between the red dots in your above image? The l...
by boarchuz
Tue Nov 29, 2022 6:55 am
Forum: General Discussion
Topic: <15ms boot, project approach
Replies: 6
Views: 1902

Re: <15ms boot, project approach

After research, seems that ULP will need 0.1mA ,if I am not wrong then it is too much energy for my purpose. It will only be >100uA while it's running, but you'd normally only start the ULP periodically (eg. every 20ms) and a typical ULP program has a very short execution time, so the average curre...
by boarchuz
Mon Nov 21, 2022 8:10 am
Forum: ESP-ADF
Topic: I2S sound recorder using only ULP - Possible?
Replies: 7
Views: 115529

Re: I2S sound recorder using only ULP - Possible?

EDsteve wrote:
Mon Nov 21, 2022 6:03 am
I should give up on the idea recording sound on a ESP32 with a power consumption of less than 5mA?
Did you rule out light sleep?
by boarchuz
Mon Nov 21, 2022 2:31 am
Forum: Hardware
Topic: Current on input/lines line in deep-sleep?
Replies: 2
Views: 1009

Re: Current on input/lines line in deep-sleep?

1. Only when the switch is closed.

2. Yes, but it probably doesn't need to be that complicated. Assuming the pin has an internal pullup (ie. <GPIO_NUM_34) then you only need that one pin and no external resistor. The ULP would enable the internal pullup, read pin level, then disable pullup.
by boarchuz
Sat Nov 19, 2022 6:58 am
Forum: ESP-ADF
Topic: I2S sound recorder using only ULP - Possible?
Replies: 7
Views: 115529

Re: I2S sound recorder using only ULP - Possible?

I always thought that even 3Mhz should be enough to deal with I2S and sample rates of >44Khz. So you think that the 8Mhz from the ULP is not fast enough the task? Bear in mind that instructions may take up to 12 cycles. Quick back of the napkin math says you can forget about 44kHz. Again, I haven't...