forked from espressif/esp-idf
spi: fix a possible concurrency issue
This commit is contained in:
committed by
bot
parent
d4d162640f
commit
1138133a78
@@ -361,12 +361,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
|
//Grab next transaction
|
||||||
r = xQueueReceiveFromISR(host->trans_queue, &trans, &do_yield);
|
r = xQueueReceiveFromISR(host->trans_queue, &trans, &do_yield);
|
||||||
if (!r) {
|
if (r) {
|
||||||
//No packet waiting. Disable interrupt.
|
//enable the interrupt again if there is packet to send
|
||||||
esp_intr_disable(host->intr);
|
esp_intr_enable(host->intr);
|
||||||
} else {
|
|
||||||
//We have a transaction. Send it.
|
//We have a transaction. Send it.
|
||||||
host->cur_trans = trans;
|
host->cur_trans = trans;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user