Search found 2 matches
- Sat Sep 30, 2023 6:26 am
- Forum: ESP-IDF
- Topic: Unable to use the whole memory in ESP32 with Arduino
- Replies: 2
- Views: 1170
Re: Unable to use the whole memory in ESP32 with Arduino
Increase the 32*1024 argument or change your large allocations from the stack to static allocations. You can also switch to xTaskCreateStatic() to allocate the task stack at compile-time. It doesn't change how much memory is available but it does show already at compile-time how much RAM is used ins...
- Thu Sep 28, 2023 6:10 pm
- Forum: ESP-IDF
- Topic: SPI Master and SD SPI Host Drivers
- Replies: 0
- Views: 758
SPI Master and SD SPI Host Drivers
As per my understanding spi_master ("SPI Master driver") and esp_flash use DMA and synchronize access to multiple devices (registered with spi_bus_add_device() or spi_bus_add_flash_device()) Nice! My ESP32-S3 PCB has both a SD card and data flash connected on SPI3, so I want both a SD driver and a f...