Hi all.I had a similar problem. The SD state before the write call was HAL_SD_CARD_PROGRAMMING. I added a state check and now everything works fine.HAL_SD_CardStateTypeDef state ;
do
{
state = HAL_SD_GetCardState(&hsd);
}
while (state == HAL_SD_CAR...