Search found 7 matches

by DesignerRick
Fri Jun 07, 2024 10:24 am
Forum: IDEs for ESP-IDF
Topic: ESP-IDF VSCode Extension v1.7.1 Released
Replies: 3
Views: 4737

Source Format

Apologies if I have double posted this. I can see lots of improvements in the Eclipse IDE V3.0.0 however I can not change the C Code Formatter off default. I use a custom format (like GNU) but even though I select it the Source -> Format always seem to use K&R Built in. I can not even select other b...
by DesignerRick
Fri Jun 07, 2024 10:17 am
Forum: IDEs for ESP-IDF
Topic: Espressif-IDE v3.0.0 (stable) --- Can not get Code format to work
Replies: 6
Views: 3800

Espressif-IDE v3.0.0 (stable) --- Can not get Code format to work

I can see lots of improvements in the Eclipse IDE V3.0.0 however I can not change the C Code Formatter off default. I use a custom format (like GNU) but even though I select it the Source -> Format always seem to use K&R Built in. I can not even select other built in formatters or use "Project speci...
by DesignerRick
Thu Jul 28, 2022 4:49 pm
Forum: Hardware
Topic: ESP32-WROOM-32e pinout change
Replies: 3
Views: 3710

Re: ESP32-WROOM-32e pinout change

Our fix is to move to the 32e with 16MB flash. Unfortunately we have built 400 units with the 32e with 4MB flash :-(
by DesignerRick
Wed Jul 27, 2022 5:29 pm
Forum: Hardware
Topic: ESP32-WROOM-32e pinout change
Replies: 3
Views: 3710

ESP32-WROOM-32e pinout change

I really hope I am wrong! I had an issue using external Flash on the ESP32-WROOM-32e, it looked like GPIO6,GPIO7,GPIO8,and GPIO9 were floating so I removed the lid of the module to see if I could find continuity to the processor. It looks like these pins no longer go from the processor to the module...
by DesignerRick
Wed Jul 27, 2022 4:39 pm
Forum: Hardware
Topic: ESP32-WROOM-32e pinout change
Replies: 3
Views: 3710

ESP32e override SPI is not working

We have a mature hardware and firmware using the ESP32-WROOM-32 module that uses an external 16 MB flash. In production we override the fuses for the SPI to an external 16 MB Flash and have been making this for almost 2 years. It works well. Below is the override. Config fuses: XPD_SDIO_FORCE (BLOCK...
by DesignerRick
Mon Mar 14, 2022 9:47 am
Forum: Report Bugs
Topic: Task Lag using TCP with both LwIP and sockets.
Replies: 1
Views: 7963

Re: Task Lag using TCP with both LwIP and sockets.

The cause of this lag was me collecting RSSI every 10 seconds. I reduced the collection to 5 minutes and the lag went away.

wifi_ap_record_t ap;
esp_wifi_sta_get_ap_info(&ap);
by DesignerRick
Thu Jan 06, 2022 1:07 pm
Forum: Report Bugs
Topic: Task Lag using TCP with both LwIP and sockets.
Replies: 1
Views: 7963

Task Lag using TCP with both LwIP and sockets.

Using IDF v4.3.1 I have implemented a simple http server to output debug information from a project using the ESP32. The ESP32 is connected to a router, with a good connection. The web-page has a 500ms refresh to show real time values updating on a simple web page. Initially I thought it was working...