no-OS
|
Implementation of TDM driver using STM32's SAI peripheral. More...
#include <stdlib.h>
#include <errno.h>
#include "no_os_gpio.h"
#include "stm32_gpio.h"
#include "no_os_tdm.h"
#include "stm32_tdm.h"
#include "no_os_error.h"
#include "no_os_alloc.h"
#include "no_os_irq.h"
#include "stm32_irq.h"
#include "no_os_lf256fifo.h"
Functions | |
int32_t | stm32_tdm_init (struct no_os_tdm_desc **desc, const struct no_os_tdm_init_param *param) |
Initialize the TDM communication peripheral. More... | |
int32_t | stm32_tdm_remove (struct no_os_tdm_desc *desc) |
Free the resources allocated by stm32_tdm_init(). More... | |
int32_t | stm32_tdm_read (struct no_os_tdm_desc *desc, void *data, uint16_t nb_samples) |
Read data using SAI TDM mode. More... | |
int32_t | stm32_stop_tdm_transfer (struct no_os_tdm_desc *desc) |
Stop SAI DMA transfer. More... | |
int32_t | stm32_pause_tdm_transfer (struct no_os_tdm_desc *desc) |
Pause SAI DMA transfer. More... | |
int32_t | stm32_resume_tdm_transfer (struct no_os_tdm_desc *desc) |
Resume SAI DMA transfer. More... | |
Variables | |
const struct no_os_tdm_platform_ops | stm32_tdm_platform_ops |
stm32 platform specific TDM platform ops structure More... | |
Implementation of TDM driver using STM32's SAI peripheral.
Copyright 2020(c) Analog Devices, Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
int32_t stm32_pause_tdm_transfer | ( | struct no_os_tdm_desc * | desc | ) |
Pause SAI DMA transfer.
desc | - The TDM descriptor. |
int32_t stm32_resume_tdm_transfer | ( | struct no_os_tdm_desc * | desc | ) |
Resume SAI DMA transfer.
desc | - The TDM descriptor. |
int32_t stm32_stop_tdm_transfer | ( | struct no_os_tdm_desc * | desc | ) |
Stop SAI DMA transfer.
desc | - The TDM descriptor. |
int32_t stm32_tdm_init | ( | struct no_os_tdm_desc ** | desc, |
const struct no_os_tdm_init_param * | param | ||
) |
Initialize the TDM communication peripheral.
desc | - The TDM descriptor. |
param | - The structure that contains the TDM parameters. |
int32_t stm32_tdm_read | ( | struct no_os_tdm_desc * | desc, |
void * | data, | ||
uint16_t | nb_samples | ||
) |
Read data using SAI TDM mode.
desc | - The TDM descriptor. |
data | - The buffer to fill with the received data. |
nb_samples | - Number of samples to read. |
int32_t stm32_tdm_remove | ( | struct no_os_tdm_desc * | desc | ) |
Free the resources allocated by stm32_tdm_init().
desc | - The TDM descriptor. |
const struct no_os_tdm_platform_ops stm32_tdm_platform_ops |
stm32 platform specific TDM platform ops structure
stm32 specific TDM platform ops structure