CARME-M4 BSP
V1.5
|
SPI driver modules. More...
Modules | |
SPI_Exported_Constants | |
SPI_Private_Functions | |
Data Structures | |
struct | SPI_InitTypeDef |
SPI Init structure definition. More... | |
struct | I2S_InitTypeDef |
I2S Init structure definition. More... | |
Functions | |
void | SPI_I2S_DeInit (SPI_TypeDef *SPIx) |
De-initialize the SPIx peripheral registers to their default reset values. More... | |
void | SPI_Init (SPI_TypeDef *SPIx, SPI_InitTypeDef *SPI_InitStruct) |
Initializes the SPIx peripheral according to the specified parameters in the SPI_InitStruct. More... | |
void | I2S_Init (SPI_TypeDef *SPIx, I2S_InitTypeDef *I2S_InitStruct) |
Initializes the SPIx peripheral according to the specified parameters in the I2S_InitStruct. More... | |
void | SPI_StructInit (SPI_InitTypeDef *SPI_InitStruct) |
Fills each SPI_InitStruct member with its default value. More... | |
void | I2S_StructInit (I2S_InitTypeDef *I2S_InitStruct) |
Fills each I2S_InitStruct member with its default value. More... | |
void | SPI_Cmd (SPI_TypeDef *SPIx, FunctionalState NewState) |
Enables or disables the specified SPI peripheral. More... | |
void | I2S_Cmd (SPI_TypeDef *SPIx, FunctionalState NewState) |
Enables or disables the specified SPI peripheral (in I2S mode). More... | |
void | SPI_DataSizeConfig (SPI_TypeDef *SPIx, uint16_t SPI_DataSize) |
Configures the data size for the selected SPI. More... | |
void | SPI_BiDirectionalLineConfig (SPI_TypeDef *SPIx, uint16_t SPI_Direction) |
Selects the data transfer direction in bidirectional mode for the specified SPI. More... | |
void | SPI_NSSInternalSoftwareConfig (SPI_TypeDef *SPIx, uint16_t SPI_NSSInternalSoft) |
Configures internally by software the NSS pin for the selected SPI. More... | |
void | SPI_SSOutputCmd (SPI_TypeDef *SPIx, FunctionalState NewState) |
Enables or disables the SS output for the selected SPI. More... | |
void | SPI_TIModeCmd (SPI_TypeDef *SPIx, FunctionalState NewState) |
Enables or disables the SPIx/I2Sx DMA interface. More... | |
void | I2S_FullDuplexConfig (SPI_TypeDef *I2Sxext, I2S_InitTypeDef *I2S_InitStruct) |
Configures the full duplex mode for the I2Sx peripheral using its extension I2Sxext according to the specified parameters in the I2S_InitStruct. More... | |
void | SPI_I2S_SendData (SPI_TypeDef *SPIx, uint16_t Data) |
Transmits a Data through the SPIx/I2Sx peripheral. More... | |
uint16_t | SPI_I2S_ReceiveData (SPI_TypeDef *SPIx) |
Returns the most recent received data by the SPIx/I2Sx peripheral. More... | |
void | SPI_CalculateCRC (SPI_TypeDef *SPIx, FunctionalState NewState) |
Enables or disables the CRC value calculation of the transferred bytes. More... | |
void | SPI_TransmitCRC (SPI_TypeDef *SPIx) |
Transmit the SPIx CRC value. More... | |
uint16_t | SPI_GetCRC (SPI_TypeDef *SPIx, uint8_t SPI_CRC) |
Returns the transmit or the receive CRC register value for the specified SPI. More... | |
uint16_t | SPI_GetCRCPolynomial (SPI_TypeDef *SPIx) |
Returns the CRC Polynomial register value for the specified SPI. More... | |
void | SPI_I2S_DMACmd (SPI_TypeDef *SPIx, uint16_t SPI_I2S_DMAReq, FunctionalState NewState) |
Enables or disables the SPIx/I2Sx DMA interface. More... | |
void | SPI_I2S_ITConfig (SPI_TypeDef *SPIx, uint8_t SPI_I2S_IT, FunctionalState NewState) |
Enables or disables the specified SPI/I2S interrupts. More... | |
FlagStatus | SPI_I2S_GetFlagStatus (SPI_TypeDef *SPIx, uint16_t SPI_I2S_FLAG) |
Checks whether the specified SPIx/I2Sx flag is set or not. More... | |
void | SPI_I2S_ClearFlag (SPI_TypeDef *SPIx, uint16_t SPI_I2S_FLAG) |
Clears the SPIx CRC Error (CRCERR) flag. More... | |
ITStatus | SPI_I2S_GetITStatus (SPI_TypeDef *SPIx, uint8_t SPI_I2S_IT) |
Checks whether the specified SPIx/I2Sx interrupt has occurred or not. More... | |
void | SPI_I2S_ClearITPendingBit (SPI_TypeDef *SPIx, uint8_t SPI_I2S_IT) |
Clears the SPIx CRC Error (CRCERR) interrupt pending bit. More... | |
SPI driver modules.
void I2S_Cmd | ( | SPI_TypeDef * | SPIx, |
FunctionalState | NewState | ||
) |
Enables or disables the specified SPI peripheral (in I2S mode).
SPIx | where x can be 2 or 3 to select the SPI peripheral (or I2Sxext for full duplex mode). |
NewState | new state of the SPIx peripheral. This parameter can be: ENABLE or DISABLE. |
None |
Definition at line 562 of file stm32f4xx_spi.c.
void I2S_FullDuplexConfig | ( | SPI_TypeDef * | I2Sxext, |
I2S_InitTypeDef * | I2S_InitStruct | ||
) |
Configures the full duplex mode for the I2Sx peripheral using its extension I2Sxext according to the specified parameters in the I2S_InitStruct.
I2Sxext | where x can be 2 or 3 to select the I2S peripheral extension block. |
I2S_InitStruct | pointer to an I2S_InitTypeDef structure that contains the configuration information for the specified I2S peripheral extension. |
None |
Definition at line 727 of file stm32f4xx_spi.c.
void I2S_Init | ( | SPI_TypeDef * | SPIx, |
I2S_InitTypeDef * | I2S_InitStruct | ||
) |
Initializes the SPIx peripheral according to the specified parameters in the I2S_InitStruct.
SPIx | where x can be 2 or 3 to select the SPI peripheral (configured in I2S mode). |
I2S_InitStruct | pointer to an I2S_InitTypeDef structure that contains the configuration information for the specified SPI peripheral configured in I2S mode. |
None |
Definition at line 348 of file stm32f4xx_spi.c.
void I2S_StructInit | ( | I2S_InitTypeDef * | I2S_InitStruct | ) |
Fills each I2S_InitStruct member with its default value.
I2S_InitStruct | pointer to a I2S_InitTypeDef structure which will be initialized. |
None |
Definition at line 508 of file stm32f4xx_spi.c.
void SPI_BiDirectionalLineConfig | ( | SPI_TypeDef * | SPIx, |
uint16_t | SPI_Direction | ||
) |
Selects the data transfer direction in bidirectional mode for the specified SPI.
SPIx | where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. |
SPI_Direction | specifies the data transfer direction in bidirectional mode. This parameter can be one of the following values:
|
None |
Definition at line 609 of file stm32f4xx_spi.c.
void SPI_CalculateCRC | ( | SPI_TypeDef * | SPIx, |
FunctionalState | NewState | ||
) |
Enables or disables the CRC value calculation of the transferred bytes.
SPIx | where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. |
NewState | new state of the SPIx CRC value calculation. This parameter can be: ENABLE or DISABLE. |
None |
Definition at line 907 of file stm32f4xx_spi.c.
void SPI_Cmd | ( | SPI_TypeDef * | SPIx, |
FunctionalState | NewState | ||
) |
Enables or disables the specified SPI peripheral.
SPIx | where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. |
NewState | new state of the SPIx peripheral. This parameter can be: ENABLE or DISABLE. |
None |
Definition at line 537 of file stm32f4xx_spi.c.
void SPI_DataSizeConfig | ( | SPI_TypeDef * | SPIx, |
uint16_t | SPI_DataSize | ||
) |
Configures the data size for the selected SPI.
SPIx | where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. |
SPI_DataSize | specifies the SPI data size. This parameter can be one of the following values:
|
None |
Definition at line 589 of file stm32f4xx_spi.c.
uint16_t SPI_GetCRC | ( | SPI_TypeDef * | SPIx, |
uint8_t | SPI_CRC | ||
) |
Returns the transmit or the receive CRC register value for the specified SPI.
SPIx | where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. |
SPI_CRC | specifies the CRC register to be read. This parameter can be one of the following values:
|
The | selected CRC register value.. |
Definition at line 947 of file stm32f4xx_spi.c.
uint16_t SPI_GetCRCPolynomial | ( | SPI_TypeDef * | SPIx | ) |
Returns the CRC Polynomial register value for the specified SPI.
SPIx | where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. |
The | CRC Polynomial register value. |
Definition at line 972 of file stm32f4xx_spi.c.
void SPI_I2S_ClearFlag | ( | SPI_TypeDef * | SPIx, |
uint16_t | SPI_I2S_FLAG | ||
) |
Clears the SPIx CRC Error (CRCERR) flag.
SPIx | To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. |
SPI_I2S_FLAG | specifies the SPI flag to clear. This function clears only CRCERR flag.
|
None |
Definition at line 1202 of file stm32f4xx_spi.c.
void SPI_I2S_ClearITPendingBit | ( | SPI_TypeDef * | SPIx, |
uint8_t | SPI_I2S_IT | ||
) |
Clears the SPIx CRC Error (CRCERR) interrupt pending bit.
SPIx | To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. |
SPI_I2S_IT | specifies the SPI interrupt pending bit to clear. This function clears only CRCERR interrupt pending bit.
|
None |
Definition at line 1282 of file stm32f4xx_spi.c.
void SPI_I2S_DeInit | ( | SPI_TypeDef * | SPIx | ) |
De-initialize the SPIx peripheral registers to their default reset values.
SPIx | To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 in SPI mode or 2 or 3 in I2S mode. |
None |
Definition at line 224 of file stm32f4xx_spi.c.
void SPI_I2S_DMACmd | ( | SPI_TypeDef * | SPIx, |
uint16_t | SPI_I2S_DMAReq, | ||
FunctionalState | NewState | ||
) |
Enables or disables the SPIx/I2Sx DMA interface.
SPIx | To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. |
SPI_I2S_DMAReq | specifies the SPI DMA transfer request to be enabled or disabled. This parameter can be any combination of the following values:
|
NewState | new state of the selected SPI DMA transfer request. This parameter can be: ENABLE or DISABLE. |
None |
Definition at line 1009 of file stm32f4xx_spi.c.
FlagStatus SPI_I2S_GetFlagStatus | ( | SPI_TypeDef * | SPIx, |
uint16_t | SPI_I2S_FLAG | ||
) |
Checks whether the specified SPIx/I2Sx flag is set or not.
SPIx | To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. |
SPI_I2S_FLAG | specifies the SPI flag to check. This parameter can be one of the following values:
|
The | new state of SPI_I2S_FLAG (SET or RESET). |
Definition at line 1161 of file stm32f4xx_spi.c.
ITStatus SPI_I2S_GetITStatus | ( | SPI_TypeDef * | SPIx, |
uint8_t | SPI_I2S_IT | ||
) |
Checks whether the specified SPIx/I2Sx interrupt has occurred or not.
SPIx | To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. |
SPI_I2S_IT | specifies the SPI interrupt source to check. This parameter can be one of the following values:
|
The | new state of SPI_I2S_IT (SET or RESET). |
Definition at line 1227 of file stm32f4xx_spi.c.
void SPI_I2S_ITConfig | ( | SPI_TypeDef * | SPIx, |
uint8_t | SPI_I2S_IT, | ||
FunctionalState | NewState | ||
) |
Enables or disables the specified SPI/I2S interrupts.
SPIx | To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. |
SPI_I2S_IT | specifies the SPI interrupt source to be enabled or disabled. This parameter can be one of the following values:
|
NewState | new state of the specified SPI interrupt. This parameter can be: ENABLE or DISABLE. |
None |
Definition at line 1117 of file stm32f4xx_spi.c.
uint16_t SPI_I2S_ReceiveData | ( | SPI_TypeDef * | SPIx | ) |
Returns the most recent received data by the SPIx/I2Sx peripheral.
SPIx | To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. |
The | value of the received data. |
Definition at line 801 of file stm32f4xx_spi.c.
void SPI_I2S_SendData | ( | SPI_TypeDef * | SPIx, |
uint16_t | Data | ||
) |
Transmits a Data through the SPIx/I2Sx peripheral.
SPIx | To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. |
Data | Data to be transmitted. |
None |
Definition at line 817 of file stm32f4xx_spi.c.
void SPI_Init | ( | SPI_TypeDef * | SPIx, |
SPI_InitTypeDef * | SPI_InitStruct | ||
) |
Initializes the SPIx peripheral according to the specified parameters in the SPI_InitStruct.
SPIx | where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. |
SPI_InitStruct | pointer to a SPI_InitTypeDef structure that contains the configuration information for the specified SPI peripheral. |
None |
Definition at line 284 of file stm32f4xx_spi.c.
void SPI_NSSInternalSoftwareConfig | ( | SPI_TypeDef * | SPIx, |
uint16_t | SPI_NSSInternalSoft | ||
) |
Configures internally by software the NSS pin for the selected SPI.
SPIx | where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. |
SPI_NSSInternalSoft | specifies the SPI NSS internal state. This parameter can be one of the following values:
|
None |
Definition at line 635 of file stm32f4xx_spi.c.
void SPI_SSOutputCmd | ( | SPI_TypeDef * | SPIx, |
FunctionalState | NewState | ||
) |
Enables or disables the SS output for the selected SPI.
SPIx | where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. |
NewState | new state of the SPIx SS output. This parameter can be: ENABLE or DISABLE. |
None |
Definition at line 659 of file stm32f4xx_spi.c.
void SPI_StructInit | ( | SPI_InitTypeDef * | SPI_InitStruct | ) |
Fills each SPI_InitStruct member with its default value.
SPI_InitStruct | pointer to a SPI_InitTypeDef structure which will be initialized. |
None |
Definition at line 480 of file stm32f4xx_spi.c.
void SPI_TIModeCmd | ( | SPI_TypeDef * | SPIx, |
FunctionalState | NewState | ||
) |
Enables or disables the SPIx/I2Sx DMA interface.
SPIx | where x can be 1, 2, 3, 4, 5 or 6 |
NewState | new state of the selected SPI TI communication mode. This parameter can be: ENABLE or DISABLE. |
None |
Definition at line 690 of file stm32f4xx_spi.c.
void SPI_TransmitCRC | ( | SPI_TypeDef * | SPIx | ) |
Transmit the SPIx CRC value.
SPIx | where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. |
None |
Definition at line 929 of file stm32f4xx_spi.c.