I am using the STM32G0xx_LL_Driver on the Debian product based on DragonBoard820c. We have the Snapdragon 820 processor which I have used as master, and MCU from ST is the slave device. For SPI transaction I'm unable to toggle Chip Select pin.
GPIO_InitStruct.Pin = SPI_NSS_Pin; GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE; GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_LOW; GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL; GPIO_InitStruct.Pull = LL_GPIO_PULL_UP; GPIO_InitStruct.Alternate ...