Virtual Hardware  Version 1.3.1 - beta
AVH FVP Models
 
Loading...
Searching...
No Matches

Audio Driver API Definitions. More...

Macros

#define AUDIO_DRV_CONTROL_TX_ENABLE   (1UL << 0)
 Enable Transmitter.
 
#define AUDIO_DRV_CONTROL_RX_ENABLE   (1UL << 1)
 Enable Receiver.
 
#define AUDIO_DRV_CONTROL_TX_DISABLE   (1UL << 2)
 Disable Transmitter.
 
#define AUDIO_DRV_CONTROL_RX_DISABLE   (1UL << 3)
 Disable Receiver.
 
#define AUDIO_DRV_INTERFACE_RX   (2U)
 Receiver.
 
#define AUDIO_DRV_INTERFACE_TX   (1U)
 Transmitter.
 
#define AUDIO_DRV_OK   (0)
 Operation succeeded.
 
#define AUDIO_DRV_ERROR   (-1)
 Unspecified error.
 
#define AUDIO_DRV_ERROR_BUSY   (-2)
 Driver is busy.
 
#define AUDIO_DRV_ERROR_TIMEOUT   (-3)
 Timeout occurred.
 
#define AUDIO_DRV_ERROR_UNSUPPORTED   (-4)
 Operation not supported.
 
#define AUDIO_DRV_ERROR_PARAMETER   (-5)
 Parameter error.
 
#define AUDIO_DRV_EVENT_RX_DATA   (1UL << 1)
 Data block received.
 
#define AUDIO_DRV_EVENT_TX_DATA   (1UL << 0)
 Data block transmitted.
 

Description

Audio Driver API Definitions.

Audio driver provides various definitions to simplify use of its Audio Driver API Functions :

Macro Definition Documentation

◆ AUDIO_DRV_EVENT_RX_DATA

#define AUDIO_DRV_EVENT_RX_DATA   (1UL << 1)

Data block received.

Triggered to indicate that all the data has been received. The driver is ready to receive next data block.

◆ AUDIO_DRV_EVENT_TX_DATA

#define AUDIO_DRV_EVENT_TX_DATA   (1UL << 0)

Data block transmitted.

Triggered to indicate that all the data has been sent (or queued in transmit buffers). The driver is ready for the next transmission.