Merge branch 'bugfix/spi_concurrency_3.3' into 'release/v3.3'

spi: fix a possible concurrency issue (port to v3.3)

See merge request idf/esp-idf!5279
This commit is contained in:
Angus Gratton 2019-06-21 13:21:44 +08:00
commit 9185c370dc

View file

@ -467,12 +467,14 @@ static void SPI_SLAVE_ISR_ATTR spi_intr(void *arg)
}
}
//Disable interrupt before checking to avoid concurrency issue.
esp_intr_disable(host->intr);
//Grab next transaction
r = xQueueReceiveFromISR(host->trans_queue, &trans, &do_yield);
if (!r) {
//No packet waiting. Disable interrupt.
esp_intr_disable(host->intr);
} else {
if (r) {
//enable the interrupt again if there is packet to send
esp_intr_enable(host->intr);
//We have a transaction. Send it.
host->hw->slave.trans_done = 0; //clear int bit
host->cur_trans = trans;