Search found 2344 matches

by ESP_Angus
Wed Jun 20, 2018 12:50 am
Forum: ESP-IDF
Topic: Heap corrupting when using xQueue
Replies: 29
Views: 30475

Re: Heap corrupting when using xQueue

Hi x-8973, I adapted the code from your post into a working main.c. This runs without any immediate problems on the current IDF master branch: https://gist.github.com/projectgus/f4f4ec494db2c67f1e1261c0b9309d91 I also turned on Comprehensive heap checking but no problems were detected. If you have s...
by ESP_Angus
Wed Jun 20, 2018 12:35 am
Forum: General Discussion
Topic: UART Communication problems at 921600
Replies: 14
Views: 25910

Re: UART Communication problems at 921600

The signal integrity looks ok. Do you have some oscilloscope traces that you can share? I'd appreciate it if you could point me to some documentation relating to the use of the Tick clock as a source for the uart driver. Sorry, I should have been more specific. The tick clock is slower, so it won't...
by ESP_Angus
Tue Jun 19, 2018 12:26 am
Forum: General Discussion
Topic: UART Communication problems at 921600
Replies: 14
Views: 25910

Re: UART Communication problems at 921600

Hi LukeSkyWire, The UART baud rate is an integer divider from the APB clock frequency (80MHz)[*] times 16, so 941176 is the closest evenly divisible rate. You could also try 1 megabaud (1000000, a very easy value to divide to) and see how this works. How is your analog signal integrity? 1MHz is gett...
by ESP_Angus
Mon Jun 18, 2018 11:59 pm
Forum: General Discussion
Topic: Connecting 2 ESP32s as master/slave devices?
Replies: 2
Views: 6830

Re: Connecting 2 ESP32s as master/slave devices

If you specifically want a wireless point to point link, you may want to look into ESP-NOW: https://esp-idf.readthedocs.io/en/latest/api-reference/wifi/esp_now.html But as John A says, it's possible for two ESP32s to talk to each other via a large number of methods. (PS: I've renamed your thread fro...
by ESP_Angus
Mon Jun 18, 2018 11:54 pm
Forum: Hardware
Topic: EN pin and RC circuit question
Replies: 5
Views: 15696

Re: EN pin and RC circuit question

The power is coming from a bench top power supply... Now, I am testing another ESP32 module and the behaviour is the same... it doesnt start What else do you have at the module end? ie is there sufficient capacitance on the power pins near the module? Is the 3.3V coming directly from the bench supp...
by ESP_Angus
Mon Jun 18, 2018 11:50 pm
Forum: ESP-IDF
Topic: Preview release: CMake-based build system for ESP-IDF
Replies: 65
Views: 80572

Re: Preview release: CMake-based build system for ESP-IDF

So, hopefully there will be a period of time where we can still use the latest ESP-IDF updates without forcing us to move to cmake. And, hopefully you will have all of the bugs worked out of the cmake system before dropping support for the pure GNU make system. That way we never have a period where...
by ESP_Angus
Mon Jun 18, 2018 7:38 am
Forum: ESP-IDF
Topic: Preview release: CMake-based build system for ESP-IDF
Replies: 65
Views: 80572

Re: Preview release: CMake-based build system for ESP-IDF

I use this with Clion and it works great, but I would like also to be able to use Arduino as a component, but there is no Branche for this of any guide I can find. So my questions is if this is possible and if yes, how to install it ? I've just written a component CMakeLists.txt file for arduino-es...
by ESP_Angus
Mon Jun 18, 2018 7:37 am
Forum: Hardware
Topic: EN pin and RC circuit question
Replies: 5
Views: 15696

Re: EN pin and RC circuit question

Hi Chris,

What's the power source for the 3.3V line? Is it possible that it ramps up very slowly, or is unstable?
by ESP_Angus
Fri Jun 15, 2018 5:35 am
Forum: General Discussion
Topic: How to force a CPU reset?
Replies: 6
Views: 26561

Re: How to force a CPU reset?

What ESP-IDF version are you each using? (if using Arduino or something else with its own i2c libraries, please mention this.) In recent ESP-IDF master branch, a change was added to always reset peripherals on startup: https://github.com/espressif/esp-idf/commit/ef39c09bc12206cb68816c7660c7641dd21df...