Search found 2344 matches

by ESP_Angus
Thu Sep 07, 2017 5:34 am
Forum: Hardware
Topic: Need help to connect external 16 MB SPI Flash Memory on ESP32-WROVER Kit
Replies: 34
Views: 65624

Re: Need help to connect external 16 MB SPI Flash Memory on ESP32-WROVER Kit

Hi Rahul, Glad to hear that you and Ritesh are making progress. esptool.py v2.0-beta1 This version of esptool.py is very old and predates support for efuse pin remappings. You will probably need to use IDF v2.1 or more recent, as these are the versions which added support for ESP32-D2WD (which also ...
by ESP_Angus
Thu Sep 07, 2017 2:02 am
Forum: Documentation
Topic: Explaining dual and quad SPI flash modes (qio, qout, dio, dout)
Replies: 0
Views: 12188

Explaining dual and quad SPI flash modes (qio, qout, dio, dout)

This comes up quite regularly, so I've added a wiki page on the esptool.py wiki:
https://github.com/espressif/esptool/wi ... lash-Modes
by ESP_Angus
Wed Sep 06, 2017 10:50 pm
Forum: Hardware
Topic: ESP32-WROVER tests & issues
Replies: 30
Views: 39063

Re: ESP32-WROVER tests & issues

Does anyone has any idea or suggestions to connect and configure second 16 MB SPI flash memory along with 4 MB SPI Flash memory which is attached into ESP32-WROVER-I module? Hi Ritesh, Please continue this discussion in the separate thread you already created for this purpose: https://esp32.com/vie...
by ESP_Angus
Wed Sep 06, 2017 10:50 pm
Forum: Hardware
Topic: Need help to connect external 16 MB SPI Flash Memory on ESP32-WROVER Kit
Replies: 34
Views: 65624

Re: Need help to connect external 16 MB SPI Flash Memory on ESP32-WROVER Kit

Also, I just want to add extra 16 MB external SPI Flash memory in addition to 4 MB SPI Flash memory. So, would you please suggest pin configuration for that and is it possible or not? Mainly my purpose is to add some more extra memory interface in addition to existing one for my application develop...
by ESP_Angus
Wed Sep 06, 2017 10:22 pm
Forum: General Discussion
Topic: Monitor baud rate
Replies: 6
Views: 30001

Re: Monitor baud rate

But In begin is recevied a lot of noise, I think that codes of SDK is still in 115200 until execute main The ROM bootloader code will always output at 115200, before it loads the second stage bootloader image from flash. From then on, serial output will use the configured baud rate. Unfortunately w...
by ESP_Angus
Wed Sep 06, 2017 3:25 am
Forum: ESP-IDF
Topic: PPP support(over serial) for esp-idf v2.0
Replies: 5
Views: 10141

Re: PPP support(over serial) for esp-idf v2.0

loboris wrote:
ESP_Angus wrote:...thanks loboris...
I think you should also credit amuzyka-grinn who was the first one to implement the PPPoS support.
Oops, I should indeed. Mis-remembered!
by ESP_Angus
Tue Sep 05, 2017 6:40 am
Forum: ESP-IDF
Topic: PPP support(over serial) for esp-idf v2.0
Replies: 5
Views: 10141

Re: PPP support(over serial) for esp-idf v2.0

PPP over serial support is marked as unsupported in V2.1 and in the current master branch V3.0-dev versions. The reason for marking it as unsupported is as follows: It was community developed and contributed (thanks loboris). We thought it was so useful (and it requires modifications to the IDF core...
by ESP_Angus
Tue Sep 05, 2017 3:26 am
Forum: ESP-IDF
Topic: Memory gets smaller and smaller
Replies: 5
Views: 8832

Re: Memory gets smaller and smaller

However 40K is a large amount of memory, it would be better if there is a way to turn the "memory pools" to low size. I think Kolban made up 40K in this case to illustrate the point. How much RAM are you seeing being used? There are some configurating tuning options for both WiFi and LWIP (under th...
by ESP_Angus
Tue Sep 05, 2017 1:15 am
Forum: ESP-IDF
Topic: Memory gets smaller and smaller
Replies: 5
Views: 8832

Re: Memory gets smaller and smaller

Those sockets will be close and resocket frequently. a few time after the esp32 starts to run, I notice the memory gots smaller and smaller using esp_get_free_heap_size To expand on kolban's answer, closed TCP sockets will appear to "leak" some memory because of the TIME_WAIT state. If you wait ove...
by ESP_Angus
Mon Sep 04, 2017 5:31 am
Forum: General Discussion
Topic: Panic Handler Constantly Resetting
Replies: 3
Views: 5626

Re: Panic Handler Constantly Resetting

We have a bug that looks a lot like this that we're currently working on a fix for. In the meantime if you disable core dump in menuconfig then you'll be able to avoid it (or you can run make erase_flash to clear the core dump partition.)

Will let you know once we have a fix.

Angus