STM32WB55RGV6 Can pin PC15 be used as the NSS(software) for the SPI bus? Pin PC10 and PC6 are ok. But pin PC13,PC14,PC15 doesn't work.
My configuration is shown below:
gpioinitstruct.Pin = SD_CS_PIN;
gpioinitstruct.Mode = GPIO_MODE_OUTPUT_PP;
gpioinitstruct.Pull = GPIO_PULLUP;
gpioinitstruct.Speed = GPIO_SPEED_FREQ_LOW;
HAL_GPIO_Init(SD_CS_GPIO_PORT, &gpioinitstruct);

