MCU is STM32F427. I'm using SPI3 to read from a transmit only slave. My configuration looks like this:/* SPI3 parameter configuration*/
hspi3.Instance = SPI3;
hspi3.Init.Mode = SPI_MODE_MASTER;
hspi3.Init.Direction = SPI_DIRECTION_2LINES_RXONLY...
Thanks @TDK, What I ended up doing was just modifying MX_SPI3_Init() like so:static void MX_SPI3_Init(void)
{
/* USER CODE BEGIN SPI3_Init 0 */
/* USER CODE END SPI3_Init 0 */
/* USER CODE BEGIN SPI3_Init 1 */
/* USER CODE END SPI3_I...
Thank you @TDK and @Community member!Yes, I see the free running clock on my scope when using hspi3.Init.Direction = SPI_DIRECTION_2LINES_RXONLY. It makes sense that the receive buffer would have unintended data from these extra trailing clocks.If...