Search found 3529 matches

by WiFive
Tue Nov 13, 2018 8:35 am
Forum: Hardware
Topic: EN300328 RSE ESP-WROOM-32 Failure
Replies: 3
Views: 4967

Re: EN300328 RSE ESP-WROOM-32 Failure

How is the peak at 2.4 so low?
by WiFive
Sun Nov 11, 2018 4:55 pm
Forum: General Discussion
Topic: SYSTEM_EVENT_AP_STADISCONNECTED not being received by ESP32 team
Replies: 4
Views: 5753

Re: SYSTEM_EVENT_AP_STADISCONNECTED not being received by ESP32 team

Let's catalog them https://www.esp32.com/viewtopic.php?f=13&t=7669 https://www.esp32.com/viewtopic.php?f=13&t=7053 https://www.esp32.com/viewtopic.php?f=13&t=5461 https://www.esp32.com/viewtopic.php?f=13&t=7866 https://www.esp32.com/viewtopic.php?f=13&t=7499 https://github.com/espressif/esp-idf/issu...
by WiFive
Sat Nov 10, 2018 4:01 pm
Forum: General Discussion
Topic: Storing a strucutre insde NVS
Replies: 8
Views: 13416

Re: Storing a strucutre insde NVS

Make your struct into a 64bit value which is supported by nvs. Hours and minutes don't need to be 32bit values.
by WiFive
Fri Nov 09, 2018 2:44 pm
Forum: General Discussion
Topic: Secondary boot loader version
Replies: 9
Views: 10246

Re: Secondary boot loader version

Sounds fine as long as the risk of brick if power is lost during bootloader/partition writing is acceptable.
by WiFive
Fri Nov 09, 2018 10:15 am
Forum: ESP32 Arduino
Topic: How can webserver send data to ESP32?
Replies: 3
Views: 4727

Re: How can webserver send data to ESP32?

Websocket or Mqtt
by WiFive
Fri Nov 09, 2018 10:08 am
Forum: General Discussion
Topic: Secondary boot loader version
Replies: 9
Views: 10246

Re: Secondary boot loader version

No because when you call that in the app it is going to give you the version the app was compiled with and could be different from the version the bootloader was compiled with.
by WiFive
Thu Nov 08, 2018 6:49 pm
Forum: General Discussion
Topic: (resolved) cannot create 4K partition
Replies: 7
Views: 6199

Re: cannot create 4K partition

Needs at least 2 sectors so 8k but it would be nice if support for read-only single sector nvs was added
by WiFive
Thu Nov 08, 2018 5:25 pm
Forum: General Discussion
Topic: Secondary boot loader version
Replies: 9
Views: 10246

Re: Secondary boot loader version

You could calculate a checksum/hash of the bootloader partition and compare it to known values or check for the version string at known addresses (which will change depending on the version) or append the version to the end of the bootloader binary. But no I don't think any function is provided to d...