Resolved! SPI back to back writes
Hello,setting up STM32L412 SPI for 16 bit Spi transfer and doing: uint16_t *SPI_DR = (uint16_t*)&SPI1->DR; *SPI_DR = 0;// while (~SPI1->SR & SPI_SR_TXE) {NutSleep(0);} *SPI_DR = 0;results in only 16 bit shifted out. With the check for TXE e...