Home
last modified time | relevance | path

Searched refs:DeviceSizeMul (Results 1 – 4 of 4) sorted by relevance

/loramac-node-latest/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Inc/
Dstm32l1xx_hal_sd.h128 __IO uint8_t DeviceSizeMul; /*!< Device size multiplier */ member
/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_hal_sd.h217 __IO uint8_t DeviceSizeMul; /*!< Device size multiplier */ member
/loramac-node-latest/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Src/
Dstm32l1xx_hal_sd.c1582 pCardInfo->SD_csd.DeviceSizeMul = (tmp & 0x03) << 1; in HAL_SD_Get_CardInfo()
1585 pCardInfo->SD_csd.DeviceSizeMul |= (tmp & 0x80) >> 7; in HAL_SD_Get_CardInfo()
1588 pCardInfo->CardCapacity *= (1 << (pCardInfo->SD_csd.DeviceSizeMul + 2)); in HAL_SD_Get_CardInfo()
/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_sd.c2451 pCSD->DeviceSizeMul = (uint8_t)((hsd->CSD[2] & 0x00038000U) >> 15U); in HAL_SD_GetCardCSD()
2454 hsd->SdCard.BlockNbr *= (1UL << ((pCSD->DeviceSizeMul & 0x07U) + 2U)); in HAL_SD_GetCardCSD()