[stm32][spi] remove hardware NSS
This commit is contained in:
parent
e037b7684e
commit
73236a825c
|
@ -138,14 +138,7 @@ static rt_err_t stm32_spi_init(struct stm32_spi *spi_drv, struct rt_spi_configur
|
|||
spi_handle->Init.CLKPolarity = SPI_POLARITY_LOW;
|
||||
}
|
||||
|
||||
if (cfg->mode & RT_SPI_NO_CS)
|
||||
{
|
||||
spi_handle->Init.NSS = SPI_NSS_HARD_OUTPUT;
|
||||
}
|
||||
else
|
||||
{
|
||||
spi_handle->Init.NSS = SPI_NSS_SOFT;
|
||||
}
|
||||
|
||||
uint32_t SPI_APB_CLOCK;
|
||||
|
||||
|
|
Loading…
Reference in New Issue