Search found 3 matches
- Thu Aug 03, 2023 12:26 pm
- Forum: ESP-IDF
- Topic: Support for external, SPI-connected RAM
- Replies: 4
- Views: 1458
Re: Support for external, SPI-connected RAM
Hi, would you upgrade to v4.4.5, the issue you described sounds similar to a bug that is fixed by this commit https://github.com/espressif/esp-idf/co ... 26c990175d
- Thu Aug 03, 2023 11:50 am
- Forum: ESP-IDF
- Topic: Support for external, SPI-connected RAM
- Replies: 4
- Views: 1458
Re: Support for external, SPI-connected RAM
Hello, may I know which IDF version you're using?
- Mon Apr 19, 2021 6:51 am
- Forum: ESP-IDF
- Topic: Using SPI Master in ESP32-C3
- Replies: 18
- Views: 24870
Re: Using SPI Master in ESP32-C3
Hi fasani, On ESP32C3, for the SPI DMA channel setting: esp_err_t spi_bus_initialize(spi_host_device_t host_id, const spi_bus_config_t *bus_config, spi_dma_chan_t dma_chan); You should either set the `dma_chan` to SPI_DMA_DISABLED or SPI_DMA_CH_AUTO, both of these are enums in spi_common.h. The form...