hello,
What does the max_transfer_sz parameter do exactly?
does it mean that the driver will allocate a buffer of that size? or will it use my buffer?
Cyrille
Search found 13 matches
- Thu Oct 31, 2024 12:59 pm
- Forum: ESP-IDF
- Topic: esp32 spi 64kBytes transaction and dma question
- Replies: 3
- Views: 1197
- Wed Oct 30, 2024 3:06 pm
- Forum: ESP-IDF
- Topic: esp32 spi 64kBytes transaction and dma question
- Replies: 3
- Views: 1197
esp32 spi 64kBytes transaction and dma question
Hello, I am using a TTGO board with a LCD, no PSRAM, and I want to use the SPI to send a full LCD frame (64KBytes) to the LCD. I am using the spi API described here: https://docs.espressif.com/projects/esp-idf/en/v5.2.3/esp32/api-reference/peripherals/spi_master.html#application-example The data is ...
- Thu Oct 17, 2024 7:10 am
- Forum: ESP32 Arduino
- Topic: Can esp32-C3 do Wifi AND esp-now at the same time
- Replies: 0
- Views: 754
Can esp32-C3 do Wifi AND esp-now at the same time
Hello, Can an esp32 have at the SAME time a wifi connection (AP or client) and some other local connection (like esp-now, BT or some other ESP to ESP wifi connection)? My project is a 2 part thing. Part 1 has an esp32 driving 2 stepper motors. Part 2 has an esp32 driving a screen and buttons (UI). I...
- Wed Sep 25, 2024 2:22 pm
- Forum: ESP-IDF
- Topic: Asyncrhonous I2C transfert
- Replies: 1
- Views: 781
Asyncrhonous I2C transfert
Hello, I need to send (repeatedly) a pack of 512 bytes using I2C in a non blocking manner... Something along the lines of: ``` void myLoop() { while (true) { do stuff if (done sending through I2C) start_sendig_I2c(512 bytes buffer) do more stuff } } ``` I have had a look at the I2C driver, and all I...
- Wed Jun 12, 2024 5:38 am
- Forum: ESP32 Arduino
- Topic: Project does not compile anymore with latest esp32 arduino board support. Can you help?
- Replies: 4
- Views: 1309
Re: Project does not compile anymore with latest esp32 arduino board support. Can you help?
Hello,
Thanks for the link and info...
Is there a way, in arduino systems, to load previous versions of API/board dev so as not to have this type of issues?
I faced the same problem with another project (on an other board)...
Cyrille
Thanks for the link and info...
Is there a way, in arduino systems, to load previous versions of API/board dev so as not to have this type of issues?
I faced the same problem with another project (on an other board)...
Cyrille
- Tue Jun 11, 2024 6:57 am
- Forum: ESP32 Arduino
- Topic: Project does not compile anymore with latest esp32 arduino board support. Can you help?
- Replies: 4
- Views: 1309
Project does not compile anymore with latest esp32 arduino board support. Can you help?
Hello, I am restarting work on a project that I was working with based on an ESP32-CAM. I changed PC and had to re-install the arduino system and the ESP board support. Now, my project does not compile anymore (while it compiles on the old computer when I take it out of storage, but this is not a go...
- Mon Jan 29, 2024 10:40 am
- Forum: ESP32 Arduino
- Topic: esp32-CAM need for 10khz interrupt
- Replies: 7
- Views: 1860
Re: esp32-CAM need for 10khz interrupt
Hello, I am kind of in an odball case. Both PWM and LDEC are close, but not really what I need. The main issue is that I do not know in advance how many pulses will ultimately need to be generated as request can be to add or remove pulses... So any library or system that I use will need to have some...
- Mon Jan 29, 2024 6:52 am
- Forum: ESP32 Arduino
- Topic: esp32-CAM need for 10khz interrupt
- Replies: 7
- Views: 1860
Re: esp32-CAM need for 10khz interrupt
Hello, > Use Ticker But Ticker seems to run as a FreeRTOS task, this means that the timing is limited by the RTOS main timer (is it the standard 1Khz?) and that timing is only aproximative... > Note that turning on/off a gpio can take up to 50-60 ms, possibly even more if it is attached to a mutex p...
- Fri Jan 26, 2024 2:17 pm
- Forum: ESP32 Arduino
- Topic: esp32-CAM need for 10khz interrupt
- Replies: 7
- Views: 1860
Re: esp32-CAM need for 10khz interrupt
Hello,
Thanks for the pointer to the code.
When you say that I should not interract with HW in interrupt, do you mean that I can not set/clear GPIO pins in interrupt (which is what I need to do) here?
Thanks,
Cyrille
Thanks for the pointer to the code.
When you say that I should not interract with HW in interrupt, do you mean that I can not set/clear GPIO pins in interrupt (which is what I need to do) here?
Thanks,
Cyrille
- Fri Jan 26, 2024 1:13 pm
- Forum: ESP32 Arduino
- Topic: esp32-CAM need for 10khz interrupt
- Replies: 7
- Views: 1860
esp32-CAM need for 10khz interrupt
Hello, I am working on an esp32-cam board using the arduino IDE... Can someone give me some sample code to setup a function that would be called 10000 times per second (on a 100micro second basis)? The function will be very simple and short so it can run under interupt.. A task based sleep however w...