2016-08-09 07:30 AM
2016-08-10 03:31 AM
I found where is the problem but I cant understand why.
HAL_StatusTypeDef HAL_QSPI_Receive(QSPI_HandleTypeDef *hqspi, uint8_t *pData, uint32_t Timeout) { while(hqspi->RxXferCount > 0) { /* Wait until FT or TC flag is set to read received data */ status = QSPI_WaitFlagStateUntilTimeout(hqspi, (QSPI_FLAG_FT | QSPI_FLAG_TC), SET, tickstart, Timeout); if (status != HAL_OK) { break; } *hqspi->pRxBuffPtr++ = *(__IO uint8_t *)data_reg; hqspi->RxXferCount--; } } status is always HAL_ERROR2017-08-21 10:35 AM
Did you ever find solution to this problem? I am having a similar issue.