MIC - Microphone Driver (ADC)BSP > Thunderboard Sense BSP

Detailed Description

Driver for the Knowles SPV1840LR5H-B MEMS Microphone.

Functions

void MIC_deInit (void)
 Powers down the MEMS microphone stops the ADC and frees up the DMA channel.
 
float MIC_getMean (void)
 Calculates the average value of the samples in the buffer.
 
uint16_t * MIC_getSampleBuffer (void)
 Gets the sample buffer.
 
float MIC_getSoundLevel (float *var)
 Calculates the sound level.
 
uint32_t MIC_init (uint32_t fs, uint16_t *buffer, size_t len)
 Initializes MEMS microphone and sets up the DMA, ADC and clocking.
 
bool MIC_isBusy (void)
 Checks if the microphone is in use.
 
void MIC_start (uint32_t nSamples)
 Starts taking samples using DMA from the microphone.
 

Error Codes

#define MIC_OK   0
 

Macro Definition Documentation

#define MIC_OK   0

No errors

Definition at line 45 of file mic.h.

Function Documentation

void MIC_deInit ( void  )

Powers down the MEMS microphone stops the ADC and frees up the DMA channel.

Returns
None

Definition at line 176 of file mic.c.

References BOARD_micEnable(), and DMADRV_FreeChannel().

float MIC_getMean ( void  )

Calculates the average value of the samples in the buffer.

Returns
The mean value of the samples in the buffer

Definition at line 249 of file mic.c.

Referenced by MIC_getSoundLevel().

uint16_t * MIC_getSampleBuffer ( void  )

Gets the sample buffer.

Returns
Returns a pointer to the sample buffer

Definition at line 237 of file mic.c.

float MIC_getSoundLevel ( float *  var)

Calculates the sound level.

Parameters
[out]varThe variance of the samples
Returns
The sound level in dB

Definition at line 274 of file mic.c.

References MIC_getMean().

uint32_t MIC_init ( uint32_t  fs,
uint16_t *  buffer,
size_t  len 
)
bool MIC_isBusy ( void  )

Checks if the microphone is in use.

Returns
Returns true if the DMA is busy taking microphone samples

Definition at line 313 of file mic.c.

void MIC_start ( uint32_t  nSamples)

Starts taking samples using DMA from the microphone.

Parameters
[in]nSamplesThe number of the samples to take
Returns
None

Definition at line 202 of file mic.c.

References DMADRV_PeripheralMemory(), dmadrvDataSize2, and dmadrvPeripheralSignal_ADC0_SCAN.