Search found 479 matches

by username
Thu Nov 02, 2023 11:37 am
Forum: Hardware
Topic: Question about ESP32-S3 without uart bridge
Replies: 3
Views: 1644

Re: Question about ESP32-S3 without uart bridge

FWIW, in all my designs using the ESP32-S3 USB interface pins I dont have to use BOOT + RESET to get it into programming mode.
It works the same as if using the serial interface.
by username
Sun Oct 29, 2023 5:23 am
Forum: Report Bugs
Topic: The W5500 + SPI_Slave driver does not work stably.
Replies: 2
Views: 31898

Re: The W5500 + SPI_Slave driver does not work stably.

Just for curiosity, have your tried the ethernet basic example? IDF, takes care of inialising W5500.
I used it and never had a problem with it.
https://github.com/espressif/esp-idf/tr ... rnet/basic
by username
Sat Oct 28, 2023 10:59 pm
Forum: ESP-IDF
Topic: Change I2C clock speed without reinitializing
Replies: 2
Views: 634

Re: Change I2C clock speed without reinitializing

The way I got arround this same issue was to set up of them instead of just one. Set the parameters for the first one with the fast clk speed, then set the second with the slower one. The trick is to use the same pins for both.
by username
Thu Oct 26, 2023 10:13 pm
Forum: Hardware
Topic: Pin states for booting ESP32-S3-WROOM
Replies: 2
Views: 1141

Re: Pin states for booting ESP32-S3-WROOM

Did you try pulling up IO0?
by username
Sun Oct 22, 2023 4:27 am
Forum: General Discussion
Topic: How to connect the console to a socket
Replies: 3
Views: 5038

Re: How to connect the console to a socket

I am using the Console component for a serial command interface but want to also access it remotely. It seems the Console is hard-wired to UART i/o, is it possible to connect it to a network socket? Yes. A while ago I wanted the same thing. So I created a TCP socket server on port 23 (telnet port) ...
by username
Wed Oct 18, 2023 2:26 am
Forum: ESP-IDF
Topic: Largest contiguous RAM for HEAP
Replies: 16
Views: 5263

Re: Largest contiguous RAM for HEAP

Have you tried menuconfig ?
by username
Sat Oct 14, 2023 9:42 pm
Forum: General Discussion
Topic: 3-Wire-SPI on ESP32-WROOM-32UE
Replies: 3
Views: 967

Re: 3-Wire-SPI on ESP32-WROOM-32UE

When you initialise your SPI bus. just set the MOSI to -1. // spi_bus_config_t buscfg.sclk_io_num = PIN_NUM_CLK; // GPIO pin for Spi CLocK signal, or -1 if not used. buscfg.mosi_io_num = -1; // GPIO pin for Master Out Slave In (=spi_d) signal, or -1 if not used. buscfg.miso_io_num = PIN_NUM_MISO; //...
by username
Fri Oct 13, 2023 6:58 am
Forum: Showcase
Topic: Amnos MIO Breakout for Esp32 Beginers
Replies: 2
Views: 17269

Re: Amnos MIO Breakout for Esp32 Beginers

How in the world are you able to sell that for $25!!!
by username
Fri Oct 13, 2023 2:13 am
Forum: Hardware
Topic: Help with PCB project - ESP32 Drone
Replies: 6
Views: 3443

Re: Help with PCB project - ESP32 Drone

1) The idea is that the USB will only be used to upload the code and the battery will be disconnected during this time, can it stay like this or should I change something? Then you are ok. 2) I added resistors and capacitors to EN (R21 -> 3.3v, C15 -> GND) and GPIO0 (R20 -> 3.3v, C16 -> GND) looks ...
by username
Thu Oct 12, 2023 3:02 am
Forum: Hardware
Topic: Help with PCB project - ESP32 Drone
Replies: 6
Views: 3443

Re: Help with PCB project - ESP32 Drone

Couple things. #1) I see that VBAT & VUSB are tied together. Not sure your plans, but If the battery is plugged in at same time USB is something bad will happen. #2) I see you have no 0.1uf caps to GND on the EN or GPIO0 lines, Neither pullups to +3.3v. I have seen far to often not doing this typica...