ESP32DMASPI
ESP32DMASPI copied to clipboard
SPI library for ESP32 which use DMA buffer to send/receive transactions
Hello, I'm interested in you work. I would like to ask is this project suitable in Vscode Expressif extension, or how to revise it to run in Expressif IDE? Thank...
Excellent work on this library, I was able to get your "transfer_big_data_in_the_background_with_cb_slave" work right away on an ESP32S3. For my project, my slave device has an additional GPIO to alert...
Thank you for your library. It looks very interesting but, pitifully, even when reusing your sample code on my ESP32C3 (Seeed Studion Xiao), the device keeps resetting itself in the...
I have a question regarding the execution of commands in a queue. My question is: With "Non-blocking multiple transactions", is an interrupt set up that causes either A: upon an...
First of all, thanks for your lib! Here is my code `ESP32DMASPI::Master master; void setup() { // put your setup code here, to run once: Serial.begin(115200); master.setDataMode(SPI_MODE0); master.setFrequency(500000); master.setMaxTransferSize(BUFFER_SIZE); master.setQueueSize(1);...