Home
last modified time | relevance | path

Searched refs:pAddress (Results 1 – 8 of 8) sorted by relevance

/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Src/
A Dstm32f7xx_hal_sram.c269 HAL_StatusTypeDef HAL_SRAM_Read_8b(SRAM_HandleTypeDef *hsram, uint32_t *pAddress, uint8_t *pDstBuff… in HAL_SRAM_Read_8b() argument
271 __IO uint8_t * psramaddress = (uint8_t *)pAddress; in HAL_SRAM_Read_8b()
306 __IO uint8_t * psramaddress = (uint8_t *)pAddress; in HAL_SRAM_Write_8b()
346 __IO uint16_t * psramaddress = (uint16_t *)pAddress; in HAL_SRAM_Read_16b()
381 __IO uint16_t * psramaddress = (uint16_t *)pAddress; in HAL_SRAM_Write_16b()
429 *pDstBuffer = *(__IO uint32_t *)pAddress; in HAL_SRAM_Read_32b()
431 pAddress++; in HAL_SRAM_Read_32b()
467 *(__IO uint32_t *)pAddress = *pSrcBuffer; in HAL_SRAM_Write_32b()
469 pAddress++; in HAL_SRAM_Write_32b()
503 HAL_DMA_Start_IT(hsram->hdma, (uint32_t)pAddress, (uint32_t)pDstBuffer, (uint32_t)BufferSize); in HAL_SRAM_Read_DMA()
[all …]
A Dstm32f7xx_hal_sdram.c299 HAL_StatusTypeDef HAL_SDRAM_Read_8b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint8_t *pDstB… in HAL_SDRAM_Read_8b() argument
301 __IO uint8_t *pSdramAddress = (uint8_t *)pAddress; in HAL_SDRAM_Read_8b()
336 HAL_StatusTypeDef HAL_SDRAM_Write_8b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint8_t *pSrc… in HAL_SDRAM_Write_8b() argument
338 __IO uint8_t *pSdramAddress = (uint8_t *)pAddress; in HAL_SDRAM_Write_8b()
376 HAL_StatusTypeDef HAL_SDRAM_Read_16b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint16_t *pDs… in HAL_SDRAM_Read_16b() argument
378 __IO uint16_t *pSdramAddress = (uint16_t *)pAddress; in HAL_SDRAM_Read_16b()
414 __IO uint16_t *pSdramAddress = (uint16_t *)pAddress; in HAL_SDRAM_Write_16b()
453 __IO uint32_t *pSdramAddress = (uint32_t *)pAddress; in HAL_SDRAM_Read_32b()
489 __IO uint32_t *pSdramAddress = (uint32_t *)pAddress; in HAL_SDRAM_Write_32b()
547 HAL_DMA_Start_IT(hsdram->hdma, (uint32_t)pAddress, (uint32_t)pDstBuffer, (uint32_t)BufferSize); in HAL_SDRAM_Read_DMA()
[all …]
A Dstm32f7xx_hal_nand.c409 nandAddress = ARRAY_ADDRESS(pAddress, hnand); in HAL_NAND_Read_Page()
487 nandAddress = ARRAY_ADDRESS(pAddress, hnand); in HAL_NAND_Write_Page()
576 nandAddress = ARRAY_ADDRESS(pAddress, hnand); in HAL_NAND_Read_SpareArea()
653 nandAddress = ARRAY_ADDRESS(pAddress, hnand); in HAL_NAND_Write_SpareArea()
808 pAddress->Page++; in HAL_NAND_Address_Inc()
811 if (pAddress->Page == hnand->Info.BlockSize) { in HAL_NAND_Address_Inc()
812 pAddress->Page = 0; in HAL_NAND_Address_Inc()
813 pAddress->Block++; in HAL_NAND_Address_Inc()
815 if (pAddress->Block == hnand->Info.ZoneSize) { in HAL_NAND_Address_Inc()
816 pAddress->Block = 0; in HAL_NAND_Address_Inc()
[all …]
A Dstm32f7xx_hal_nor.c383 HAL_StatusTypeDef HAL_NOR_Read(NOR_HandleTypeDef *hnor, uint32_t *pAddress, uint16_t *pData) in HAL_NOR_Read() argument
415 *pData = *(__IO uint32_t *)(uint32_t)pAddress; in HAL_NOR_Read()
434 HAL_StatusTypeDef HAL_NOR_Program(NOR_HandleTypeDef *hnor, uint32_t *pAddress, uint16_t *pData) in HAL_NOR_Program() argument
466 NOR_WRITE(pAddress, *pData); in HAL_NOR_Program()
/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Inc/
A Dstm32f7xx_hal_sram.h136 HAL_StatusTypeDef HAL_SRAM_Read_8b(SRAM_HandleTypeDef *hsram, uint32_t *pAddress, uint8_t *pDstBuff…
137 HAL_StatusTypeDef HAL_SRAM_Write_8b(SRAM_HandleTypeDef *hsram, uint32_t *pAddress, uint8_t *pSrcBuf…
138 HAL_StatusTypeDef HAL_SRAM_Read_16b(SRAM_HandleTypeDef *hsram, uint32_t *pAddress, uint16_t *pDstBu…
139 HAL_StatusTypeDef HAL_SRAM_Write_16b(SRAM_HandleTypeDef *hsram, uint32_t *pAddress, uint16_t *pSrcB…
140 HAL_StatusTypeDef HAL_SRAM_Read_32b(SRAM_HandleTypeDef *hsram, uint32_t *pAddress, uint32_t *pDstBu…
141 HAL_StatusTypeDef HAL_SRAM_Write_32b(SRAM_HandleTypeDef *hsram, uint32_t *pAddress, uint32_t *pSrcB…
142 HAL_StatusTypeDef HAL_SRAM_Read_DMA(SRAM_HandleTypeDef *hsram, uint32_t *pAddress, uint32_t *pDstBu…
143 HAL_StatusTypeDef HAL_SRAM_Write_DMA(SRAM_HandleTypeDef *hsram, uint32_t *pAddress, uint32_t *pSrcB…
A Dstm32f7xx_hal_sdram.h141 HAL_StatusTypeDef HAL_SDRAM_Read_8b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint8_t *pDstB…
142 HAL_StatusTypeDef HAL_SDRAM_Write_8b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint8_t *pSrc…
143 HAL_StatusTypeDef HAL_SDRAM_Read_16b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint16_t *pDs…
144 HAL_StatusTypeDef HAL_SDRAM_Write_16b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint16_t *pS…
145 HAL_StatusTypeDef HAL_SDRAM_Read_32b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint32_t *pDs…
146 HAL_StatusTypeDef HAL_SDRAM_Write_32b(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint32_t *pS…
148 HAL_StatusTypeDef HAL_SDRAM_Read_DMA(SDRAM_HandleTypeDef *hsdram, uint32_t * pAddress, uint32_t *pD…
149 HAL_StatusTypeDef HAL_SDRAM_Write_DMA(SDRAM_HandleTypeDef *hsdram, uint32_t *pAddress, uint32_t *pS…
A Dstm32f7xx_hal_nand.h177 HAL_StatusTypeDef HAL_NAND_Read_Page(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress, uin…
178 HAL_StatusTypeDef HAL_NAND_Write_Page(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress, ui…
179 HAL_StatusTypeDef HAL_NAND_Read_SpareArea(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress
180 …AL_NAND_Write_SpareArea(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress, uint8_t *pBuffer…
181 HAL_StatusTypeDef HAL_NAND_Erase_Block(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress);
183 uint32_t HAL_NAND_Address_Inc(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress);
A Dstm32f7xx_hal_nor.h176 HAL_StatusTypeDef HAL_NOR_Read(NOR_HandleTypeDef *hnor, uint32_t *pAddress, uint16_t *pData);
177 HAL_StatusTypeDef HAL_NOR_Program(NOR_HandleTypeDef *hnor, uint32_t *pAddress, uint16_t *pData);

Completed in 13 milliseconds