Search found 30 matches

by arao23
Fri Dec 16, 2016 4:38 am
Forum: ESP-IDF
Topic: Exchanging keys securely?
Replies: 6
Views: 10750

Exchanging keys securely?

Suppose I want to transfer my home WiFi password to the ESP32 (which is in AP mode) so that the ESP32 can then switch to station mode and connect to my home network. I thought about using a hard-coded key to "encrypt" the data, but this can easily be hacked and the data sniffed and decrypted over th...
by arao23
Fri Dec 16, 2016 4:24 am
Forum: General Discussion
Topic: How many times can you flash?
Replies: 11
Views: 29696

Re: How many times can you flash?

Ah, perfect.
by arao23
Wed Dec 14, 2016 7:23 am
Forum: Sample Code
Topic: [Info] Connecting to an access point with a fixed IP address ...
Replies: 6
Views: 18334

Re: Connecting to an access point with a fixed IP address ...

This is going to be super helpful. Thanks for sharing!
by arao23
Wed Dec 14, 2016 7:22 am
Forum: Sample Code
Topic: Full Wifi scan sample
Replies: 3
Views: 14661

Re: Full Wifi scan sample

Cool! Thanks for this.
by arao23
Wed Dec 14, 2016 7:17 am
Forum: General Discussion
Topic: How many times can you flash?
Replies: 11
Views: 29696

How many times can you flash?

I'm curious as to what the limit is, something like 10,000 write/erase cycles?
by arao23
Wed Dec 14, 2016 2:37 am
Forum: ESP-IDF
Topic: "No rule to make target" while compiling
Replies: 5
Views: 17952

Re: "No rule to make target" while compiling

Figured it out. To help others: There seems to be an issue if you use both Eclipse and the msys terminal at the same time. This could be also caused by the virus scanner, so I haven't looked into the exact cause, but here is what I had to do: 1. Disable your real-time filesystem virus shield (tempor...
by arao23
Wed Dec 14, 2016 1:10 am
Forum: ESP-IDF
Topic: "No rule to make target" while compiling
Replies: 5
Views: 17952

"No rule to make target" while compiling

Everything was working fine, when all of a sudden, I am getting the following error: ... CC src/crypto/md5-internal.o CC src/crypto/sha256-internal.o CC src/crypto/aes-internal-enc.o CC port/os_xtensa.o AR libwpa_supplicant.a CC trax.o AR libxtensa-debug-module.a CC main.o make[1]: *** No rule to ma...
by arao23
Tue Dec 13, 2016 9:44 pm
Forum: ESP-IDF
Topic: ESP32 AP not showing up
Replies: 2
Views: 6978

Re: ESP32 AP not showing up

Thanks Angus, noticed in the serial terminal program that it was panicking at esp_wifi_connect() as it was only an AP, not a station, so there was nothing to connect to. After commenting out that line, it boots up properly.
by arao23
Tue Dec 13, 2016 5:13 pm
Forum: ESP-IDF
Topic: Suggestions on how to track a memory leak ...
Replies: 2
Views: 9187

Re: Suggestions on how to track a memory leak ...

FreeRTOS has pvPortMalloc / vPortFree, and you can trace calls to it with a tool: http://www.freertos.org/trace

Or using macros:
http://www.freertos.org/rtos-trace-macros.html
by arao23
Tue Dec 13, 2016 4:58 pm
Forum: ESP-IDF
Topic: ESP32 AP not showing up
Replies: 2
Views: 6978

ESP32 AP not showing up

I'm on Windows, and I finally got it to flash after following Rudi's post here: http://esp32.com/viewtopic.php?f=13&p=1512#p1512 So, it looks like it flashed, but it's weird because I don't see "Erasing flash" anywhere, just multiple writes: $ make flash Flashing binaries to serial port COM9 (app at...