[bsp][stm32][drv_spi.c] remove meaningless settings

This commit is contained in:
Meco Man 2023-08-03 22:59:39 -04:00
parent a2fae26d32
commit 0fb393e9a1
1 changed files with 0 additions and 2 deletions

View File

@ -108,8 +108,6 @@ static rt_err_t stm32_spi_init(struct stm32_spi *spi_drv, struct rt_spi_configur
if (cfg->data_width == 8)
{
spi_handle->Init.DataSize = SPI_DATASIZE_8BIT;
spi_handle->TxXferSize = 8;
spi_handle->RxXferSize = 8;
}
else if (cfg->data_width == 16)
{