![]() |
ISF
2.1
Intelligent Sensing Framework for Kinetis with Processor Expert
|
fsl_spi_master_driver.c implements spi master driver layer. More...
#include "fsl_spi_master_driver.h"
#include "isf_fsl_spi_master_PEx.h"
#include "PE_Types.h"
#include "PE_Error.h"
#include "mqxlite.h"
#include "lwmem.h"
#include "isf_util.h"
Go to the source code of this file.
Functions | |
void | spi_master_init (uint32_t instance) |
Initialize a SPI instance for master mode operation. More... | |
void | spi_master_configure_bus (uint32_t instance, const spi_user_config_t *device) |
Configure the SPI port to access a device on the bus. More... | |
spi_status_t | spi_master_transfer (uint32_t instance, const spi_user_config_t *device, const uint8_t *sendBuffer, uint8_t *receiveBuffer, uint16_t transferByteCount, uint32_t timeout) |
Perform a blocking SPI master mode transfer. More... | |
spi_status_t | spi_master_transfer_async (uint32_t instance, const spi_user_config_t *device, const uint8_t *sendBuffer, uint8_t *receiveBuffer, uint16_t transferByteCount) |
Perform an non-blocking SPI master mode transfer. More... | |
Variables | |
uint8 | gSys_NumSpiBuses |
spi_master_instance_PEx | spi_master_instance_tbl [] |
Lookup table for the LLD instance. More... | |
spi_master_state_t | spi_master_state [] |
fsl_spi_master_driver.c implements spi master driver layer.
File: fsl_spi_master_driver.c
Copyright (c) 2014, Freescale Semiconductor, Inc.
Definition in file fsl_spi_master_driver.c.
void spi_master_configure_bus | ( | uint32_t | instance, |
const spi_user_config_t * | device | ||
) |
Configure the SPI port to access a device on the bus.
instance | The instance number of the SPI peripheral. |
device | Pointer to the device information struct. This struct contains the settings for how the SPI bus will be configured. |
Definition at line 60 of file fsl_spi_master_driver.c.
Referenced by spi_master_adapter_configure().
void spi_master_init | ( | uint32_t | instance | ) |
Initialize a SPI instance for master mode operation.
instance | The instance number of the SPI peripheral. |
Definition at line 43 of file fsl_spi_master_driver.c.
References spi_master_instance_PEx::fnSPILLDInit, gSys_NumSpiBuses, and SPI_Master_State::pDeviceHandle.
Referenced by spi_master_adapter_init().
spi_status_t spi_master_transfer | ( | uint32_t | instance, |
const spi_user_config_t * | device, | ||
const uint8_t * | sendBuffer, | ||
uint8_t * | receiveBuffer, | ||
uint16_t | transferByteCount, | ||
uint32_t | timeout | ||
) |
Perform a blocking SPI master mode transfer.
This function simultaneously sends and receives data on the SPI bus, as SPI is naturally a full-duplex bus.
instance | The instance number of the SPI peripheral. |
device | Pointer to the device information struct. This struct contains the settings for how the SPI bus will be configured for this transfer. You may pass NULL for this parameter, in which case the current bus configuration is used unmodified. |
sendBuffer | Buffer of data to send. You may pass NULL for this parameter, in which case bytes with a value of 0 (zero) will be sent. |
receiveBuffer | Buffer where received bytes are stored. If you pass NULL for this parameter, the received bytes are ignored. |
transferByteCount | The number of bytes to send and receive. |
timeout | A timeout for the transfer in microseconds. If the transfer takes longer than this amount of time, the transfer will be aborted and a kStatus_SPI_Timeout error will be returned. |
#kStatus_Success | The transfer was succesful. |
kStatus_SPI_Busy | Cannot perform another transfer because one is already in progress. |
kStatus_SPI_Timeout | The transfer timed out and was aborted. |
Definition at line 70 of file fsl_spi_master_driver.c.
References FALSE, gSys_NumSpiBuses, kStatus_SPI_Error, kStatus_SPI_Success, and SPI_PEX_READ_EVENT_SUCCESS.
spi_status_t spi_master_transfer_async | ( | uint32_t | instance, |
const spi_user_config_t * | device, | ||
const uint8_t * | sendBuffer, | ||
uint8_t * | receiveBuffer, | ||
uint16_t | transferByteCount | ||
) |
Perform an non-blocking SPI master mode transfer.
instance | The instance number of the SPI peripheral. |
device | Pointer to the device information struct. This struct contains the settings for how the SPI bus will be configured for this transfer. You may pass NULL for this parameter, in which case the current bus configuration is used unmodified. |
sendBuffer | Buffer of data to send. You may pass NULL for this parameter, in which case bytes with a value of 0 (zero) will be sent. |
receiveBuffer | Buffer where received bytes are stored. If you pass NULL for this parameter, the received bytes are ignored. |
transferByteCount | The number of bytes to send and receive. |
#kStatus_Success | The transfer was succesful. |
kStatus_SPI_Busy | Cannot perform another transfer because one is already in progress. |
kStatus_SPI_Timeout | The transfer timed out and was aborted. |
Definition at line 105 of file fsl_spi_master_driver.c.
References kStatus_SPI_Success.
uint8 gSys_NumSpiBuses |
Definition at line 96 of file isf_sysconf_comms.c.
Referenced by spi_master_init(), and spi_master_transfer().
spi_master_instance_PEx spi_master_instance_tbl[] |
Lookup table for the LLD instance.
Definition at line 26 of file isf_fsl_spi_master_PEx.c.
spi_master_state_t spi_master_state[] |
Definition at line 26 of file fsl_spi_master_driver.c.