Why would SPI send 16 bits instead of 8?
I have configured my STM32G071 SPI peripheral to transmit 8 bits with the following code:void spi_config(void) { RCC->APBENR2 |= RCC_APBENR2_SPI1EN; //Enable SPI Clock //Configure for SPI mode (not I2S mode) SPI1->I2SCFGR &= ~SPI_I2SCFGR_I2...