Skip to content

Commit

Permalink
[WIP] Adds bus acquire/release semantics to SPI start/stop. (#23439)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc authored Jul 17, 2024
1 parent e69be07 commit daa777d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions platforms/chibios/drivers/spi_master.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,14 @@ __attribute__((weak)) void spi_init(void) {
}

bool spi_start(pin_t slavePin, bool lsbFirst, uint8_t mode, uint16_t divisor) {
#if (SPI_USE_MUTUAL_EXCLUSION == TRUE)
spiAcquireBus(&SPI_DRIVER);
#endif // (SPI_USE_MUTUAL_EXCLUSION == TRUE)

if (spiStarted) {
return false;
}

#if SPI_SELECT_MODE != SPI_SELECT_MODE_NONE
if (slavePin == NO_PIN) {
return false;
Expand Down Expand Up @@ -326,4 +331,8 @@ void spi_stop(void) {
spiStop(&SPI_DRIVER);
spiStarted = false;
}

#if (SPI_USE_MUTUAL_EXCLUSION == TRUE)
spiReleaseBus(&SPI_DRIVER);
#endif // (SPI_USE_MUTUAL_EXCLUSION == TRUE)
}

0 comments on commit daa777d

Please sign in to comment.