Search found 9 matches

by jiqz--
Fri Sep 15, 2023 10:33 pm
Forum: Hardware
Topic: ESP32-S3 SPI pin remapping
Replies: 4
Views: 8634

Re: ESP32-S3 SPI pin remapping

It worked for me. Note that: While in general, speeds up to 80MHz on the dedicated SPI pins and 40MHz on GPIO-matrix-routed pins are supported, full-duplex transfers routed over the GPIO matrix only support speeds up to 26MHz. https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/api-referen...
by jiqz--
Tue Aug 22, 2023 8:51 pm
Forum: Hardware
Topic: Misaligned IC under metal shield
Replies: 6
Views: 1594

Re: Misaligned IC under metal shield

Still, if you tilt the board whilst the solder is still molten the chip may slide. Please pay extra attention and post an update when you reflow some more
by jiqz--
Mon Aug 21, 2023 7:17 pm
Forum: Hardware
Topic: Misaligned IC under metal shield
Replies: 6
Views: 1594

Re: Misaligned IC under metal shield

Make sure there is no vibration in your oven and that the PCBs are kept perfectly flat whilst moving them if the solder is still molten. Best to keep flat in the oven, let cool, then take out without risk. You've run into over 50 out of how many boards with this problem?
by jiqz--
Sun Aug 20, 2023 11:40 pm
Forum: Hardware
Topic: ESP32 wakes up immediately from deep sleep indicating GPIO change
Replies: 1
Views: 754

Re: ESP32 wakes up immediately from deep sleep indicating GPIO change

What is the value you pass to the

Code: Select all

do_deep_sleep
fuction when you call it?

Also, GPIO35 is an input-only pin so you don't need to give it any internal pull up or down configuration:
GPIO pins 34-39 are input-only. These pins do not feature an output driver or internal pull-
up/pull-down circuitry
by jiqz--
Sun Aug 20, 2023 11:30 pm
Forum: Hardware
Topic: ESP32-S3 SPI pin remapping
Replies: 4
Views: 8634

Re: ESP32-S3 SPI pin remapping

Thank you, I will test this out and provide an update
by jiqz--
Thu Aug 17, 2023 6:04 pm
Forum: Hardware
Topic: ESP32-S3 SPI pin remapping
Replies: 4
Views: 8634

ESP32-S3 SPI pin remapping

Is it possible to remap the SPI pins (/use any pins) on the ESP32-S3 for SPI without a performance hit? I only need to connect MOSI, MISO, SS (Slave Select / CE / CS), and CLK. So far I have been using GPIO11 for MOSI, GPIO13 for MISO, GPIO10 for SS, and GPIO12 for SCK, it works but I need to use di...
by jiqz--
Thu Aug 17, 2023 5:08 pm
Forum: Hardware
Topic: ESP32-S3-WROOM-1 Flashing
Replies: 1
Views: 953

Re: ESP32-S3-WROOM-1 Flashing

Also need to put ESP32-S3 into flash mode by disabling the chip (EN low) and making sure that when you enable the chip again (EN high) that BOOT is low (IO0 low). You can probably do this and make your UART connections with some test pads on a PCB and a spring-loaded connector for flashing.
by jiqz--
Thu Aug 17, 2023 1:59 pm
Forum: ESP32 Arduino
Topic: Resources to Learn how to use the ESP32S3?
Replies: 2
Views: 1315

Re: Resources to Learn how to use the ESP32S3?

For your camera capabilities look at https://github.com/espressif/esp32-camera . There is also a popular ESP32-CAM board you could try out available cheaply from AliExpress and there are some YouTube videos online going into it. If you want to straight away use the S3 rather than have to think about...
by jiqz--
Thu Aug 17, 2023 1:49 pm
Forum: Hardware
Topic: ESP32-S3 SPICLK_P and SPICLK_N
Replies: 0
Views: 1448

ESP32-S3 SPICLK_P and SPICLK_N

What is the purpose of SPICLK_P and SPICLK_N? Even in the internal schematic of the ESP32-S3-WROOM-2, though SPICLK_P (GPIO47) and SPICLK_N (GPIO48) are powered by VDD_SPI (so have the same voltage as the flash and PSRAM under ESP32-S3-WROOM-2 the metal shield) I do not see those SPICLK_P and SPICLK...