STM32F429ZI Discovery board drivers

Dependents:   2a 2b 2c 2d1 ... more

Embed: (wiki syntax)

« Back to documentation index

STM32F429I DISCOVERY SDRAM Private Functions

STM32F429I DISCOVERY SDRAM Private Functions
[STM32F429I DISCOVERY SDRAM]

Functions

uint8_t BSP_SDRAM_Init (void)
 Initializes the SDRAM device.
void BSP_SDRAM_Initialization_sequence (uint32_t RefreshCount)
 Programs the SDRAM device.
uint8_t BSP_SDRAM_ReadData (uint32_t uwStartAddress, uint32_t *pData, uint32_t uwDataSize)
 Reads an mount of data from the SDRAM memory in polling mode.
uint8_t BSP_SDRAM_ReadData_DMA (uint32_t uwStartAddress, uint32_t *pData, uint32_t uwDataSize)
 Reads an mount of data from the SDRAM memory in DMA mode.
uint8_t BSP_SDRAM_WriteData (uint32_t uwStartAddress, uint32_t *pData, uint32_t uwDataSize)
 Writes an mount of data to the SDRAM memory in polling mode.
uint8_t BSP_SDRAM_WriteData_DMA (uint32_t uwStartAddress, uint32_t *pData, uint32_t uwDataSize)
 Writes an mount of data to the SDRAM memory in DMA mode.
uint8_t BSP_SDRAM_Sendcmd (FMC_SDRAM_CommandTypeDef *SdramCmd)
 Sends command to the SDRAM bank.
void BSP_SDRAM_DMA_IRQHandler (void)
 Handles SDRAM DMA transfer interrupt request.
__weak void BSP_SDRAM_MspInit (SDRAM_HandleTypeDef *hsdram, void *Params)
 Initializes SDRAM MSP.
__weak void BSP_SDRAM_MspDeInit (SDRAM_HandleTypeDef *hsdram, void *Params)
 DeInitializes SDRAM MSP.

Function Documentation

void BSP_SDRAM_DMA_IRQHandler ( void   )

Handles SDRAM DMA transfer interrupt request.

Definition at line 313 of file stm32f429i_discovery_sdram.c.

uint8_t BSP_SDRAM_Init ( void   )

Initializes the SDRAM device.

Definition at line 100 of file stm32f429i_discovery_sdram.c.

void BSP_SDRAM_Initialization_sequence ( uint32_t  RefreshCount )

Programs the SDRAM device.

Parameters:
RefreshCount,:SDRAM refresh counter value

Definition at line 161 of file stm32f429i_discovery_sdram.c.

__weak void BSP_SDRAM_MspDeInit ( SDRAM_HandleTypeDef *  hsdram,
void *  Params 
)

DeInitializes SDRAM MSP.

Note:
This function can be surcharged by application code.
Parameters:
hsdram,:pointer on SDRAM handle
Params,:pointer on additional configuration parameters, can be NULL.

Definition at line 445 of file stm32f429i_discovery_sdram.c.

__weak void BSP_SDRAM_MspInit ( SDRAM_HandleTypeDef *  hsdram,
void *  Params 
)

Initializes SDRAM MSP.

Note:
This function can be surcharged by application code.
Parameters:
hsdram,:pointer on SDRAM handle
Params,:pointer on additional configuration parameters, can be NULL.

Definition at line 324 of file stm32f429i_discovery_sdram.c.

uint8_t BSP_SDRAM_ReadData ( uint32_t  uwStartAddress,
uint32_t *  pData,
uint32_t  uwDataSize 
)

Reads an mount of data from the SDRAM memory in polling mode.

Parameters:
uwStartAddress: Read start address
pData: Pointer to data to be read
uwDataSize,:Size of read data from the memory

Definition at line 223 of file stm32f429i_discovery_sdram.c.

uint8_t BSP_SDRAM_ReadData_DMA ( uint32_t  uwStartAddress,
uint32_t *  pData,
uint32_t  uwDataSize 
)

Reads an mount of data from the SDRAM memory in DMA mode.

Parameters:
uwStartAddress: Read start address
pData: Pointer to data to be read
uwDataSize,:Size of read data from the memory

Definition at line 241 of file stm32f429i_discovery_sdram.c.

uint8_t BSP_SDRAM_Sendcmd ( FMC_SDRAM_CommandTypeDef *  SdramCmd )

Sends command to the SDRAM bank.

Parameters:
SdramCmd,:Pointer to SDRAM command structure
Return values:
HALstatus

Definition at line 298 of file stm32f429i_discovery_sdram.c.

uint8_t BSP_SDRAM_WriteData ( uint32_t  uwStartAddress,
uint32_t *  pData,
uint32_t  uwDataSize 
)

Writes an mount of data to the SDRAM memory in polling mode.

Parameters:
uwStartAddress: Write start address
pData: Pointer to data to be written
uwDataSize,:Size of written data from the memory

Definition at line 259 of file stm32f429i_discovery_sdram.c.

uint8_t BSP_SDRAM_WriteData_DMA ( uint32_t  uwStartAddress,
uint32_t *  pData,
uint32_t  uwDataSize 
)

Writes an mount of data to the SDRAM memory in DMA mode.

Parameters:
uwStartAddress: Write start address
pData: Pointer to data to be written
uwDataSize,:Size of written data from the memory

Definition at line 281 of file stm32f429i_discovery_sdram.c.