Search found 5 matches
- Tue Oct 29, 2024 7:38 pm
- Forum: ESP-IDF
- Topic: ESP-IDF in VSCode and OpenOCD
- Replies: 2
- Views: 655
Re: ESP-IDF in VSCode and OpenOCD
Uninstalled everything and reinstalled everything. Did everything in the PowerShell first. Got it working to the same point as before. OpenOCD would not work. Did some search on this error, and pointed me to access to the USB library for the builtin JTAD in my ESP32-S3. In Device Manager, found the ...
- Tue Oct 29, 2024 2:59 pm
- Forum: ESP-IDF
- Topic: ESP-IDF in VSCode and OpenOCD
- Replies: 2
- Views: 655
Re: ESP-IDF in VSCode and OpenOCD
The last error I get regarding is when I try to change device target.
- Tue Oct 29, 2024 12:36 pm
- Forum: ESP-IDF
- Topic: ESP-IDF in VSCode and OpenOCD
- Replies: 2
- Views: 655
ESP-IDF in VSCode and OpenOCD
I have been working for a few days to get ESP-IDF working in VSCode. Followed every tutorial and video on the internet almost, but got it working now. I have an ESP32-S3 with a dual USB (one UART and one JTAG). I am now able to flash the module using UART, on either port. Now I am moving to debuggin...
- Sun Oct 27, 2024 11:42 pm
- Forum: ESP32 Arduino
- Topic: ESP32-S3 SPI interface to RC522
- Replies: 1
- Views: 840
Re: ESP32-S3 SPI interface to RC522
I figured it out. Replaced hspi with just SPI in the below hspi.begin(SPI2_SCK, SPI2_MISO, SPI2_MOSI, SS_PIN_0);. So SPI.Begin... Works given I am using the standard pins. Not sure how you'd go about using SPI2 or SPI3 with your pins...don't need it for my project, but not straight forward it seems....
- Sat Oct 26, 2024 4:02 pm
- Forum: ESP32 Arduino
- Topic: ESP32-S3 SPI interface to RC522
- Replies: 1
- Views: 840
ESP32-S3 SPI interface to RC522
I have been trying for the past 2 days to get the SPI working on my sample project. I have the ESP32-S3 connected to the RC522. For the life of me, I am not able to get them to communicate properly. Here is what I tried: First, I ran the project with: // Serial.print("MOSI: "); // Serial.println(MOS...