Search found 2344 matches

by ESP_Angus
Fri Jan 13, 2017 5:09 am
Forum: ESP-IDF
Topic: Homekit authentication co-processor
Replies: 7
Views: 11979

Re: Homekit authentication co-processor

Hi volansys,

It's best to reach out directly to your contacts at Espressif for details about HomeKit.

Angus
by ESP_Angus
Fri Jan 13, 2017 5:07 am
Forum: Hardware
Topic: ESP-WROOM-32 flash fail
Replies: 6
Views: 12374

Re: ESP-WROOM-32 flash fail

Hi Alex, The error at the end of your video indicates the stub returning result 0xc1 in response to a data packet, which in the esptool flasher source code is ESP_BAD_DATA_CHECKSUM. Implies that some of the data file got corrupted between being sent by the FTDI and received by the ESP32. Does it fai...
by ESP_Angus
Fri Jan 13, 2017 5:00 am
Forum: General Discussion
Topic: SDIO Interface
Replies: 27
Views: 52010

Re: SDIO Interface

Hi Espagnole,

Looks like you mentioned this on github as well, and ESP_igrr has replied to you there:
https://github.com/espressif/esp-idf/issues/227

Angus
by ESP_Angus
Wed Jan 11, 2017 12:06 am
Forum: General Discussion
Topic: TLS 1.2
Replies: 4
Views: 11107

Re: TLS 1.2

Just to avoid any confusion for anyone reading this, esp-idf (for ESP32) supports TLS v1.2 and has certificate support.

For questions regarding ESP8266 support, please post on the ESP8266 forum: http://bbs.espressif.com/
by ESP_Angus
Mon Jan 09, 2017 11:58 pm
Forum: ESP-IDF
Topic: Problems connecting to WiFi
Replies: 25
Views: 46122

Re: Problems connecting to WiFi

Thanks for updating Marty. I've replied on the github issue, but just to provide the same information here: this appears to be a bug where values stored by the wifi libraries in NVS cause WiFi to stop working after an update. "make erase_flash" is a temporary workaround. I have a copy of the "invali...
by ESP_Angus
Mon Jan 09, 2017 9:30 pm
Forum: ESP-IDF
Topic: Problems connecting to WiFi
Replies: 25
Views: 46122

Re: Problems connecting to WiFi

Hi Deti, After some tests I found out, that it is necessary to fully erase the flash memory by issuing the command ~/esp/esp-idf/components/esptool_py/esptool/esptool.py --port /dev/ttyUSB0 erase_flash Now make flash works properly. To clarify, are you saying that you couldn't connect to WiFi before...
by ESP_Angus
Mon Jan 09, 2017 12:20 am
Forum: ESP-IDF
Topic: getsockopt(), setsockopt() not working. socket buffer size,..
Replies: 3
Views: 10156

Re: getsockopt(), setsockopt() not working. socket buffer size,..

Hi,

Thanks for your patience with this. A menuconfig option to enable SO_RCVBUF in LWIP will be merged to github master branch in the next few days.

Angus
by ESP_Angus
Mon Jan 09, 2017 12:18 am
Forum: General Discussion
Topic: StackDepth for xTaskCreate, why so big values?
Replies: 4
Views: 17747

Re: StackDepth for xTaskCreate, why so big values?

In a slight variation from the standard FreeRTOS convention, StackType_t on esp-idf is uint8_t, so the stack size is specified in bytes not words. So passing 1024 for usStackDepth yields a 1KB stack not a 4KB stack. I'll make sure we document this somewhere. As far as I know (I'm sure Jeroen can exp...
by ESP_Angus
Mon Jan 09, 2017 12:07 am
Forum: ESP-IDF
Topic: Problems connecting to WiFi
Replies: 25
Views: 46122

Re: Problems connecting to WiFi

Hi Deti,

As you've suggested, it looks to me like something with your WiFi router. ESP32 keeps failing during the WiFi auth phase.

What authentication type do you have set on the router? Is there anything unusual about SSID or password (particularly long, non-ASCII characters, etc.?)
by ESP_Angus
Thu Jan 05, 2017 11:15 pm
Forum: ESP-IDF
Topic: Atomic operations with <stdatomic.h> in IDF?
Replies: 2
Views: 8339

Re: Atomic operations with <stdatomic.h> in IDF?

Thanks jakob. For the record, I think including stdint.h is all that is strictly needed. Will fix this in esp-idf.