Move SPI ISR back to CPU0

See if this does anything for the itermittent spi acquire hangs
custom
jacqueline 7 months ago
parent c030a4510a
commit 7d1266404d
  1. 2
      src/drivers/spi.cpp

@ -41,7 +41,7 @@ esp_err_t init_spi(void) {
// manages its own use of DMA-capable memory.
.max_transfer_sz = 4096,
.flags = SPICOMMON_BUSFLAG_MASTER | SPICOMMON_BUSFLAG_IOMUX_PINS,
.isr_cpu_id = ESP_INTR_CPU_AFFINITY_1,
.isr_cpu_id = ESP_INTR_CPU_AFFINITY_0,
.intr_flags = ESP_INTR_FLAG_LOWMED | ESP_INTR_FLAG_IRAM,
};

Loading…
Cancel
Save