Fix some HAL_STM32F1 type declarations

This commit is contained in:
Scott Lahteine
2019-01-12 15:10:21 -06:00
parent eb78aed863
commit 3e867008f0
5 changed files with 14 additions and 14 deletions

View File

@@ -138,7 +138,7 @@ bool SDIO_WriteBlock(uint32_t blockAddress, const uint8_t *data) {
SDIO_CLEAR_FLAG(SDIO_ICR_CMD_FLAGS | SDIO_ICR_DATA_FLAGS);
uint32 timeout = millis() + SDIO_WRITE_TIMEOUT;
uint32_t timeout = millis() + SDIO_WRITE_TIMEOUT;
while (timeout > millis()) {
if (SDIO_GetCardState() == SDIO_CARD_TRANSFER) {
return true;