Search found 2344 matches

by ESP_Angus
Tue Jun 12, 2018 1:16 am
Forum: Hardware
Topic: Holding button during flashing ESP
Replies: 5
Views: 7075

Re: Holding button during flashing ESP

So I am guessing it is all on the uart\usb chipset. Like a built-in feature than comes with IC No, some additional circuitry is added (where WiFive mentions, look for the label on the PCB itself) to coordinate the automatic reset. You can read about the details here: https://github.com/espressif/es...
by ESP_Angus
Mon Jun 11, 2018 11:41 pm
Forum: General Discussion
Topic: [esptool] segments with load 0x00000000
Replies: 11
Views: 12249

Re: [esptool] segments with load 0x00000000

To reach this I think it will be needed not to run FreeRTOS (scheduler takes some time), write my own drivers (even with FreeRTOS I had to use custom driver for MCPWM) and optimize FPU. I don't want to discourage you from going your own way, but for what it's worth if you only have a single task ru...
by ESP_Angus
Mon Jun 11, 2018 11:36 pm
Forum: General Discussion
Topic: E (611) cpu_start: Failed to init external RAM!
Replies: 7
Views: 10415

Re: E (611) cpu_start: Failed to init external RAM!

Hi Jason,

That's not something we'd expect. What clock speed are you running the PSRAM at (config item)? And what ESP-IDF version are you using?

Recent ESP-IDF fixed some issues running PSRAM at 80MHz, where signal quality could be borderline in some cases.


Angus
by ESP_Angus
Mon Jun 11, 2018 12:40 am
Forum: ESP32 Arduino
Topic: how can I get wifi rssi at faster rate
Replies: 6
Views: 13773

Re: how can I get wifi rssi at faster rate

Hi funnygiraffe, I've moved this topic the Arduino forum as you're using Arduino. If using Arduino isn't a requirement then I can move it back. The last parameter of WiFi.scanNetworks() function is "uint32_t max_ms_per_chan = 300", which is the amount of time to spend listening on each channel as pa...
by ESP_Angus
Mon Jun 11, 2018 12:31 am
Forum: ESP-IDF
Topic: Strange build error: /main.c:69:77: error: implicit declaration of function 'esp_err_to_name'
Replies: 2
Views: 9076

Re: Strange build error: /main.c:69:77: error: implicit declaration of function 'esp_err_to_name'

Hi yanosz, /home/esp32/JellingStone/main/./main.c:69:77: error: implicit declaration of function 'esp_err_to_name' [-Werror=implicit-function-declaration] The esp_err_to_name() function was added to esp_err.h after IDF v3.0 was released. It's new in v3.1. You can solve this error by switching to the...
by ESP_Angus
Mon Jun 11, 2018 12:22 am
Forum: General Discussion
Topic: ESP IDF in Linux Fedora
Replies: 3
Views: 5926

Re: ESP IDF in Linux Fedora

Hi murugesh,

The Getting Started guide steps for Fedora should be very similar to the CentOS steps in the Getting Started guide:

https://esp-idf.readthedocs.io/en/lates ... setup.html

If you notice anything which is different, please let us know.

Angus
by ESP_Angus
Mon Jun 11, 2018 12:19 am
Forum: ESP-IDF
Topic: Developing without the full toolchain
Replies: 4
Views: 5727

Re: Developing without the full toolchain

Hi jpan27, If MSYS2 is the main sticking point then you might want to take a look at the CMake-based build system (currently in preview release) which doesn't require MSYS2: https://esp32.com/viewtopic.php?f=13&t=5559&p=24109 selectively compile what I need from the IDF framework into a static libra...
by ESP_Angus
Sun Jun 10, 2018 3:13 am
Forum: General Discussion
Topic: [esptool] segments with load 0x00000000
Replies: 11
Views: 12249

Re: [esptool] segments with load 0x00000000

Thank you very much for such an exhausting answer, I really appreciate that. I am interested in building quadcopters based on ESP32 and its followers. I have successfully built a flying quad with ESP-IDF but it seems to me too heavy for this. I would like to build a custom lightweigth SDK (without ...
by ESP_Angus
Fri Jun 08, 2018 5:02 am
Forum: General Discussion
Topic: uart via built in usb on esp board
Replies: 14
Views: 25540

Re: uart via built in usb on esp board

That's right, whenever software asks for a pin number it is asking for the GPIO number not the number of the pin/pad on the QFN package. So, for example, the default UART 0 TXD pin is GPIO 1. You can find it at pad 41 on the ESP32-D0 QFN package (a different pad on the ESP32-D2, but it's still GPIO ...