Search found 5 matches

by rGlory
Wed May 05, 2021 12:01 am
Forum: ESP32 Arduino
Topic: I don't know what camera model I have......
Replies: 1
Views: 9121

Re: I don't know what camera model I have......

ESP32-D0WDQ6 is CPU name. not board. Try to identify your board name for example here: https://randomnerdtutorials.com/esp32-c ... pin-gpios/

If you find it then you will get information if it has PSRAM or not and which camera it uses.
by rGlory
Tue May 04, 2021 11:46 pm
Forum: ESP32 Arduino
Topic: Dual SPI on VSPI as well as HSPI pins
Replies: 1
Views: 5624

Re: Dual SPI on VSPI as well as HSPI pins

You need to use separate instances of SPIClass for VSPI and HSPI. Global SPIClass instance SPI is by default initialized as VSPI so you can create another instance of this class in your code and initialize it as HSPI. Or do not use global instance at all and create 2 your own instances and for examp...
by rGlory
Sun May 02, 2021 5:05 pm
Forum: ESP32 Arduino
Topic: Cannot make HSPI work faster than 8MHz clock
Replies: 2
Views: 2593

Re: Cannot make HSPI work faster than 8MHz clock

I found this topic https://www.esp32.com/viewtopic.php?t=4688#:~:text=It%20is%20in%20fact%20capable,clock%20a%20lot%2C%20and%20impedance. which says: My result: in case use HSPI & VSPI mapped like this: HSPI_CLK = 14 or 25 GPIO HSPI_MOSI = 13 or 26 GPIO HSPI_MISO = 12 or 32 GPIO HSPI_CS = 15 or 33 G...
by rGlory
Fri Apr 30, 2021 7:20 pm
Forum: ESP32 Arduino
Topic: ESP32 with Ethernet - Can't get it to work
Replies: 1
Views: 2348

Re: ESP32 with Ethernet - Can't get it to work

I made UIPEthernet working with ENC28J60 - I had to switch to HSPI, by default it uses VSPI. But I found out it is very slow, but seems to be working.
by rGlory
Fri Apr 30, 2021 6:42 pm
Forum: ESP32 Arduino
Topic: Cannot make HSPI work faster than 8MHz clock
Replies: 2
Views: 2593

Cannot make HSPI work faster than 8MHz clock

Hi, I am trying to make ESP32-CAM to stream images over ethernet using ENC28J60 with SPI interface. So far I can only make it to work reliable with 8MHz clock on SPI bus. I am using arduino SPIClass interface with transactions and manual control over CS pin. If I try to use 20MHz or 10MHz clock I ha...