Search found 2067 matches

by ESP_igrr
Mon Jun 12, 2017 6:15 am
Forum: ESP-IDF
Topic: gettimeofday() still useless across a deep sleep
Replies: 10
Views: 20218

Re: gettimeofday() still useless across a deep sleep

For the record, this is the earlier topic where this was discussed: https://esp32.com/viewtopic.php?f=13&t=1908

The issue identified in that topic isn't fixed yet, but we'll update the topic once it is.
by ESP_igrr
Sun Jun 11, 2017 3:54 pm
Forum: General Discussion
Topic: Crash running https_request example
Replies: 19
Views: 22770

Re: Crash running https_request example

Based on the varying crash cause, this looks very much like a brownout... unfortunately brownout detector support hasn't been merged yet, so hard to tell for sure. Do you have a different USB cable to try? It doesn't happen very often, but I remember there were a few reports of brownout like issues ...
by ESP_igrr
Sun Jun 11, 2017 4:51 am
Forum: General Discussion
Topic: wearleveling filesystem image uploading
Replies: 22
Views: 25847

Re: wearleveling filesystem image uploading

On hold for a while — we are working on improvements to OpenOCD.
by ESP_igrr
Sun Jun 11, 2017 4:50 am
Forum: General Discussion
Topic: Re-target newlib, but always errno=9.
Replies: 1
Views: 3632

Re: Re-target newlib, but always errno=9.

Can you show the part of the code where you register /dev/console via esp_vfs_register?
by ESP_igrr
Sat Jun 10, 2017 5:28 am
Forum: ESP-IDF
Topic: NVS functions thread-safe?
Replies: 4
Views: 7772

Re: NVS functions thread-safe?

NVS functions (C API) do locking internally, preventing concurrent access.
by ESP_igrr
Sat Jun 10, 2017 3:26 am
Forum: ESP-IDF
Topic: please help to get JTAG working on esp wrover kit
Replies: 12
Views: 23876

Re: please help to get JTAG working on esp wrover kit

Actually it doesn't need d2xx API. It's an option, but the default (libusb1.0) also works well.
You still need a udev rule to avoid loading serial port driver though.
by ESP_igrr
Sat Jun 10, 2017 3:23 am
Forum: General Discussion
Topic: Crash running https_request example
Replies: 19
Views: 22770

Re: Crash running https_request example

Could you give a bit more info about the hardware? ESP-WROOM32 is a module which isn't normally connected to USB port directly. Usually there is some board involved which has a voltage regulator and USB/UART converter.
by ESP_igrr
Fri Jun 09, 2017 2:58 pm
Forum: General Discussion
Topic: ESP32 Ethernet Crashing whole LAN
Replies: 6
Views: 9971

Re: ESP32 Ethernet Crashing whole LAN

Would be very interested in the steps to reproduce, or any clues related to network setup/equipment. If anything, that's a very neat undocumented feature </espressif hat off>
by ESP_igrr
Fri Jun 09, 2017 12:12 pm
Forum: ESP32 Arduino
Topic: Deep Sleep or other power saving functions?
Replies: 23
Views: 37723

Re: Deep Sleep or other power saving functions?

Could you please describe the connections you have to the module and measurement method? WROOM32 should not need any software mods to achieve 5uA deep sleep current.
by ESP_igrr
Thu Jun 08, 2017 2:51 pm
Forum: ESP32 Arduino
Topic: Deep Sleep or other power saving functions?
Replies: 23
Views: 37723

Re: Deep Sleep or other power saving functions?

It seems to be working without the powerdown command? How necessary is that command and is there an API to do that? Depending on the flash chip specs, with powerdown you can get even lower current consumption. There's no API for this since this hasn't been a very common requirement/feature. It's fa...