-
Notifications
You must be signed in to change notification settings - Fork 825
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SPI instead of UART #379
Comments
I think, maybe the SDIO is a better way |
@xcguang thanks for answer. Could you give me more explanation? Is there any example for that? Or ready to use firmware/hex? |
You can select SDIO or SPI in |
I checked but not clear for now. I will deeply look at it. Thank you. |
hi again. I looked it up. But somethings not clear to me. If i follow your steps, can i access esp32 with spi from my spi master mcu? For example we can send How can i do the same job over spi? Is it same, should i send same command from spi? |
@ESP-Coco Please give some suggestion. |
@yldzmuhammed Hi, you are right. Just send the same command on the upper layer, and the system will be packaged as SDIO command and sent through SPI. you can refer to this document : https://github.com/espressif/esp-at/tree/master/examples/at_sdspi_host , |
@ESP-Coco thanks. In that case, esp32 will be slave an my mcu (whatever i use) will be master so that i can send at commands to the esp32. Correct? If yes, which pin of the esp32 should i use? I am a little confused.. |
@yldzmuhammed You are right, ESP32 will be SDIO slave, the pins ESP32 uses are shown in the ESP32 datasheet. |
Hello everyone,
I used so many project esp32 and its great. Thanks all of you guys for this great effort.
Now i wonder if i can use esp32 at with some high speed bus like spi instead of uart.
In my project, i am getting raw camera data and i am processing it with 200mhz mcu. And i want to stream it with wifi. Maybe video server or somethink else. And also, i need to use ble on the esp32.
What should i do to get it done?
Is it possible to stream video signal from uart and use ble? Or should/can i change the bus to spi instead of uart?
The text was updated successfully, but these errors were encountered: