You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/troubleshooting.rst
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -59,11 +59,10 @@ Here are some steps that you can try:
59
59
* Check your USB cable and try a new one (some cables are only for charging and there is no data connection).
60
60
* Change the USB port - prefer direct connection to the computer and avoid USB hubs. Some USB ports may share the power source with other ports used, for example, for charging a phone.
61
61
* Check your power supply.
62
-
* Make sure that nothing is connected to pins labeled **TX** and **RX**.
62
+
* Make sure that nothing is connected to pins labeled **TX** and **RX**. Please refer to the pin layout table - some TX and RX pins may not be labeled on the dev board.
63
63
* In some instances, you must keep **GPIO0** LOW during the uploading process via the serial interface.
64
64
* Hold down the **“BOOT”** button on your ESP32 board while uploading/flashing.
65
65
* Solder a **10uF** capacitor in parallel with **RST** and **GND**.
66
-
* If you bought your dev board from a questionable seller, they might have scammed you and sent ESP8266 instead of ESP32.
67
66
* If you are using external power connected to pins, it is easy to confuse pins **CMD** (which is usually next to the 5V pin) and **GND**.
68
67
69
68
In some development boards, you can try adding the reset delay circuit, as described in the *Power-on Sequence* section on the `ESP32 Hardware Design Guidelines <https://www.espressif.com/sites/default/files/documentation/esp32_hardware_design_guidelines_en.pdf>`_ to get into the download mode automatically.
@@ -149,7 +148,7 @@ Even though you made sure that the pins are correctly connected, and not using r
149
148
150
149
[ 1065][E][sd_diskio.cpp:807] sdcard_mount(): f_mount failed: (3) The physical drive cannot work
151
150
152
-
Most of the problems originate from a poor connection caused by Dupont cables, and one of the best solutions is to **solder all the connections** or use good quality connectors.
151
+
Most of the problems originate from a poor connection caused by prototyping cables/wires, and one of the best solutions is to **solder all the connections** or use good quality connectors.
153
152
154
153
Note that with SD_MMC lib all the data pins need to be pulled up with an external 10k to 3.3V. This applies especially to card's D3 which needs to be pulled up even when using 1-bit line connection and the D3 is not used.
Copy file name to clipboardExpand all lines: docs/source/tutorials/cdc_dfu_flash.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ ESP32-S3 CDC and DFU
23
23
24
24
It's important that your board includes the USB connector attached to the embedded USB from the SoC. If your board doesn't have the USB connector, you can attach an external one to the USB pins.
25
25
26
-
These instructions will only work on the supported devices with the embedded USB peripheral. This tutorial will not work if you are using an external USB-to-serial converter like FTDI, CP2102, CH340, etc.
26
+
These instructions will only work on the supported devices with the embedded USB peripheral. This tutorial will not work if you are using an external USB-to-serial converter like FTDI, CP210x, CH340, etc.
27
27
28
28
For a complete reference to the Arduino IDE tools menu, please see the `Tools Menus <../guides/tools_menu.html>`_ reference guide.
Copy file name to clipboardExpand all lines: libraries/SD/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ The SPI uses 4 communication pins + 2 power connections and operates on up to 80
46
46
SD-SPI speed is approximately half of the SD-MMC even when used on 1-bit line.
47
47
You can read more about SD SPI in the [documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/sdspi_host.html)
48
48
49
-
SD_MMC is supported only by ESP32 and ESP320S3 and can be connected only to dedicated pins. SD_MMC allows to use of 1, 4 or 8 data pins + 2 additional communication pins and 2 power pins. The data pins need to be pulled up externally.
49
+
SD_MMC is supported only by ESP32 and ESP32-S3 and can be connected only to dedicated pins. SD_MMC allows to use of 1, 4 or 8 data pins + 2 additional communication pins and 2 power pins. The data pins need to be pulled up externally.
50
50
You can read more about SD_MMC in the [documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/sdmmc_host.html)
51
51
1-bit: SD_MMC_ speed is approximately two-times faster than SPI mode
52
52
4-bit: SD_MMC speed is approximately three-times faster than SPI mode.
Copy file name to clipboardExpand all lines: libraries/SD_MMC/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -106,7 +106,7 @@ The SPI uses 4 communication pins + 2 power connections and operates on up to 80
106
106
SD-SPI speed is approximately half of the SD-MMC even when used on 1-bit line.
107
107
You can read more about SD SPI in the [documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/sdspi_host.html)
108
108
109
-
SD_MMC is supported only by ESP32 and ESP320S3 and can be connected only to dedicated pins. SD_MMC allows to use of 1, 4 or 8 data pins + 2 additional communication pins and 2 power pins. The data pins need to be pulled up externally.
109
+
SD_MMC is supported only by ESP32 and ESP32-S3 and can be connected only to dedicated pins. SD_MMC allows to use of 1, 4 or 8 data pins + 2 additional communication pins and 2 power pins. The data pins need to be pulled up externally.
110
110
You can read more about SD_MMC in the [documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/sdmmc_host.html)
111
111
1-bit: SD_MMC_ speed is approximately two-times faster than SPI mode
112
112
4-bit: SD_MMC speed is approximately three-times faster than SPI mode.
0 commit comments