Home
last modified time | relevance | path

Searched refs:BLOCKSIZE (Results 1 – 3 of 3) sorted by relevance

/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_sd_ex.c216 errorstate = SDMMC_CmdBlockLength(hsd->Instance, BLOCKSIZE); in HAL_SDEx_HighSpeed()
276 hsd->Instance->IDMABSIZE = (uint32_t) (BLOCKSIZE * BufferSize); in HAL_SDEx_ConfigDMAMultiBuffer()
330 config.DataLength = BLOCKSIZE * NumberOfBlocks; in HAL_SDEx_ReadBlocksDMAMultiBuffer()
340 errorstate = SDMMC_CmdBlockLength(hsd->Instance, BLOCKSIZE); in HAL_SDEx_ReadBlocksDMAMultiBuffer()
420 config.DataLength = BLOCKSIZE * NumberOfBlocks; in HAL_SDEx_WriteBlocksDMAMultiBuffer()
428 errorstate = SDMMC_CmdBlockLength(hsd->Instance, BLOCKSIZE); in HAL_SDEx_WriteBlocksDMAMultiBuffer()
Dstm32l4xx_hal_sd.c674 errorstate = SDMMC_CmdBlockLength(hsd->Instance, BLOCKSIZE); in HAL_SD_ReadBlocks()
686 config.DataLength = NumberOfBlocks * BLOCKSIZE; in HAL_SD_ReadBlocks()
899 errorstate = SDMMC_CmdBlockLength(hsd->Instance, BLOCKSIZE); in HAL_SD_WriteBlocks()
911 config.DataLength = NumberOfBlocks * BLOCKSIZE; in HAL_SD_WriteBlocks()
1091 hsd->RxXferSize = BLOCKSIZE * NumberOfBlocks; in HAL_SD_ReadBlocks_IT()
1101 errorstate = SDMMC_CmdBlockLength(hsd->Instance, BLOCKSIZE); in HAL_SD_ReadBlocks_IT()
1113 config.DataLength = BLOCKSIZE * NumberOfBlocks; in HAL_SD_ReadBlocks_IT()
1201 hsd->TxXferSize = BLOCKSIZE * NumberOfBlocks; in HAL_SD_WriteBlocks_IT()
1212 errorstate = SDMMC_CmdBlockLength(hsd->Instance, BLOCKSIZE); in HAL_SD_WriteBlocks_IT()
1225 config.DataLength = BLOCKSIZE * NumberOfBlocks; in HAL_SD_WriteBlocks_IT()
[all …]
/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_hal_sd.h328 #define BLOCKSIZE ((uint32_t)512U) /*!< Block size is 512 bytes */ macro