#include "chip.h"
#include <stdint.h>
Go to the source code of this file.
Functions | |
void | SPI_Enable (Spi *spi) |
Enables a SPI peripheral. | |
void | SPI_Disable (Spi *spi) |
Disables a SPI peripheral. | |
void | SPI_EnableIt (Spi *spi, uint32_t dwSources) |
Enables one or more interrupt sources of a SPI peripheral. | |
void | SPI_DisableIt (Spi *spi, uint32_t dwSources) |
Disables one or more interrupt sources of a SPI peripheral. | |
void | SPI_Configure (Spi *spi, uint32_t dwId, uint32_t dwConfiguration) |
Configures a SPI peripheral as specified. The configuration can be computed using several macros (see SPI Configuration Macros). | |
void | SPI_ChipSelect (Spi *spi, uint8_t cS) |
Configures SPI chip select. | |
void | SPI_SetMode (Spi *spi, uint32_t dwConfiguration) |
Configures SPI Mode Register. | |
void | SPI_ReleaseCS (Spi *spi) |
Configures SPI to release last used CS line. | |
void | SPI_ConfigureNPCS (Spi *spi, uint32_t dwNpcs, uint32_t dwConfiguration) |
Configures a chip select of a SPI peripheral. The chip select configuration is computed using several macros (see SPI Configuration Macros). | |
void | SPI_ConfigureCSMode (Spi *spi, uint32_t dwNpcs, uint32_t bReleaseOnLast) |
Configures a chip select active mode of a SPI peripheral. | |
uint32_t | SPI_GetStatus (Spi *spi) |
Get the current status register of the given SPI peripheral. | |
uint32_t | SPI_Read (Spi *spi) |
Reads and returns the last word of data received by a SPI peripheral. This method must be called after a successful SPI_Write call. | |
void | SPI_Write (Spi *spi, uint32_t dwNpcs, uint16_t wData) |
Sends data through a SPI peripheral. If the SPI is configured to use a fixed peripheral select, the npcs value is meaningless. Otherwise, it identifies the component which shall be addressed. | |
void | SPI_WriteLast (Spi *spi, uint32_t dwNpcs, uint16_t wData) |
Sends last data through a SPI peripheral. If the SPI is configured to use a fixed peripheral select, the npcs value is meaningless. Otherwise, it identifies the component which shall be addressed. | |
uint32_t | SPI_IsFinished (Spi *spi) |
Check if SPI transfer finish. |
Implementation of Serial Peripheral Interface (SPI) controller.
Definition in file spi.c.
void SPI_ChipSelect | ( | Spi * | spi, | |
uint8_t | cS | |||
) |
void SPI_Configure | ( | Spi * | spi, | |
uint32_t | dwId, | |||
uint32_t | dwConfiguration | |||
) |
Configures a SPI peripheral as specified. The configuration can be computed using several macros (see SPI Configuration Macros).
spi | Pointer to an SPI instance. | |
id | Peripheral ID of the SPI. | |
configuration | Value of the SPI configuration register. |
Definition at line 128 of file spi.c.
void SPI_ConfigureCSMode | ( | Spi * | spi, | |
uint32_t | dwNpcs, | |||
uint32_t | bReleaseOnLast | |||
) |
Configures a chip select active mode of a SPI peripheral.
spi | Pointer to an SPI instance. | |
dwNpcs | Chip select to configure (0, 1, 2 or 3). | |
bReleaseOnLast | CS controlled by last transfer. SPI_ReleaseCS() is used to release CS. |
void SPI_ConfigureNPCS | ( | Spi * | spi, | |
uint32_t | dwNpcs, | |||
uint32_t | dwConfiguration | |||
) |
Configures a chip select of a SPI peripheral. The chip select configuration is computed using several macros (see SPI Configuration Macros).
spi | Pointer to an SPI instance. | |
npcs | Chip select to configure (0, 1, 2 or 3). | |
configuration | Desired chip select configuration. |
void SPI_Disable | ( | Spi * | spi | ) |
void SPI_DisableIt | ( | Spi * | spi, | |
uint32_t | dwSources | |||
) |
void SPI_Enable | ( | Spi * | spi | ) |
void SPI_EnableIt | ( | Spi * | spi, | |
uint32_t | dwSources | |||
) |
uint32_t SPI_GetStatus | ( | Spi * | spi | ) |
uint32_t SPI_IsFinished | ( | Spi * | spi | ) |
uint32_t SPI_Read | ( | Spi * | spi | ) |
void SPI_ReleaseCS | ( | Spi * | spi | ) |
void SPI_SetMode | ( | Spi * | spi, | |
uint32_t | dwConfiguration | |||
) |
void SPI_Write | ( | Spi * | spi, | |
uint32_t | dwNpcs, | |||
uint16_t | wData | |||
) |
Sends data through a SPI peripheral. If the SPI is configured to use a fixed peripheral select, the npcs value is meaningless. Otherwise, it identifies the component which shall be addressed.
spi | Pointer to an SPI instance. | |
npcs | Chip select of the component to address (0, 1, 2 or 3). | |
data | Word of data to send. |
void SPI_WriteLast | ( | Spi * | spi, | |
uint32_t | dwNpcs, | |||
uint16_t | wData | |||
) |
Sends last data through a SPI peripheral. If the SPI is configured to use a fixed peripheral select, the npcs value is meaningless. Otherwise, it identifies the component which shall be addressed.
spi | Pointer to an SPI instance. | |
npcs | Chip select of the component to address (0, 1, 2 or 3). | |
data | Word of data to send. |