Search found 3 matches

by CobaltTheFox
Fri Aug 02, 2024 12:57 am
Forum: Hardware
Topic: SD Card Strange Power Up
Replies: 1
Views: 659

SD Card Strange Power Up

Hello All. I am having some trouble getting an SD card to mount on my esp32 custom board. After exhausting numerous troubleshooting options I bought the ESP32-S3N32 Dev Board. The SD card module I am using are HiLetgo micro SD card adapters that I bypassed the 5V to 3.3V regulator on. I am using the...
by CobaltTheFox
Wed Jul 17, 2024 11:49 pm
Forum: Hardware
Topic: ESP32-S3 Won't Communicate over COM Port after efuse burn
Replies: 1
Views: 760

ESP32-S3 Won't Communicate over COM Port after efuse burn

Hello, I have an ESP32-S3 and I wanted to use GPIO pins 39-42 for a project. Looking online I found that these are JTAG pins so I burned the efuse EFUSE_DIS_PAD_JTAG to 1. According to the datasheet this should force the everything over onto the USB JTAG. My ESP32 will no long communicate over it's ...
by CobaltTheFox
Tue Jul 16, 2024 9:36 pm
Forum: ESP32 Arduino
Topic: SD Card Won't Mount ESP32 Arduino
Replies: 0
Views: 789

SD Card Won't Mount ESP32 Arduino

Hello, I have been using the following code for my project to attempt to mount an SD card. #include "FS.h" #include "SD.h" #include "SPI.h" #define REASSIGN_PINS int sck = 40; int miso = 39; int mosi = 41; int cs = 42; void setup() { Serial.begin(115200); while (!Serial) { delay(10); } #ifdef REASSI...