Add CS down/up for device type detection

This commit is contained in:
jflyper 2018-10-26 00:35:07 +09:00
parent 70723bdcfe
commit a9d6c7840b
1 changed files with 4 additions and 0 deletions

View File

@ -435,6 +435,8 @@ bool max7456Init(const max7456Config_t *max7456Config, const vcdProfile_t *pVcdP
// Do this at half the speed for safety.
spiSetDivisor(busdev->busdev_u.spi.instance, MAX7456_SPI_CLK * 2);
__spiBusTransactionBegin(busdev);
max7456Send(MAX7456ADD_CMAL, (1 << 6)); // CA[8] bit
if (max7456Send(MAX7456ADD_CMAL|MAX7456ADD_READ, 0xff) & (1 << 6)) {
@ -443,6 +445,8 @@ bool max7456Init(const max7456Config_t *max7456Config, const vcdProfile_t *pVcdP
max7456DeviceType = MAX7456_DEVICE_TYPE_MAX;
}
__spiBusTransactionEnd(busdev);
#if defined(USE_OVERCLOCK)
// Determine SPI clock divisor based on config and the device type.