mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_ChibiOS: add option to set HAL_SPI_SCK_SAVE_RESTORE
This commit is contained in:
parent
6c13d7bee9
commit
1ae842e4ed
|
@ -88,7 +88,9 @@ SPIBus::SPIBus(uint8_t _bus) :
|
|||
FUNCTOR_BIND_MEMBER(&SPIBus::dma_deallocate, void, Shared_DMA *));
|
||||
|
||||
// remember the SCK line for stop_peripheral()/start_peripheral()
|
||||
#if HAL_SPI_SCK_SAVE_RESTORE
|
||||
sck_mode = palReadLineMode(spi_devices[bus].sck_line);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -349,6 +351,7 @@ void SPIBus::stop_peripheral(void)
|
|||
return;
|
||||
}
|
||||
const auto &sbus = spi_devices[bus];
|
||||
#if HAL_SPI_SCK_SAVE_RESTORE
|
||||
if (spi_mode == SPIDEV_MODE0 || spi_mode == SPIDEV_MODE1) {
|
||||
// Clock polarity is 0, so we need to set the clock line low before spi reset
|
||||
palClearLine(sbus.sck_line);
|
||||
|
@ -357,6 +360,7 @@ void SPIBus::stop_peripheral(void)
|
|||
palSetLine(sbus.sck_line);
|
||||
}
|
||||
palSetLineMode(sbus.sck_line, PAL_MODE_OUTPUT_PUSHPULL);
|
||||
#endif
|
||||
spiStop(sbus.driver);
|
||||
spi_started = false;
|
||||
}
|
||||
|
@ -372,10 +376,10 @@ void SPIBus::start_peripheral(void)
|
|||
|
||||
/* start driver and setup transfer parameters */
|
||||
spiStart(spi_devices[bus].driver, &spicfg);
|
||||
|
||||
#if HAL_SPI_SCK_SAVE_RESTORE
|
||||
// restore sck pin mode from stop_peripheral()
|
||||
palSetLineMode(spi_devices[bus].sck_line, sck_mode);
|
||||
|
||||
#endif
|
||||
spi_started = true;
|
||||
}
|
||||
|
||||
|
|
|
@ -25,6 +25,10 @@
|
|||
#include "Scheduler.h"
|
||||
#include "Device.h"
|
||||
|
||||
#ifndef HAL_SPI_SCK_SAVE_RESTORE
|
||||
#define HAL_SPI_SCK_SAVE_RESTORE TRUE
|
||||
#endif
|
||||
|
||||
namespace ChibiOS {
|
||||
|
||||
class SPIBus : public DeviceBus {
|
||||
|
@ -54,7 +58,9 @@ private:
|
|||
bool spi_started;
|
||||
|
||||
// mode line for SCK pin
|
||||
#if HAL_SPI_SCK_SAVE_RESTORE
|
||||
iomode_t sck_mode;
|
||||
#endif
|
||||
};
|
||||
|
||||
struct SPIDesc {
|
||||
|
|
Loading…
Reference in New Issue