EFR32 Blue Gecko 1 Software Documentation  efr32bg1-doc-5.1.2
MEMS Microphone Functions

Detailed Description

MEMS microphone driver and support functions.

DO_NOT_INCLUDE_WITH_DOXYGEN

Functions

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

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 186 of file mic.c.

References BOARD_micEnable(), DMADRV_FreeChannel(), and PRS_SourceAsyncSignalSet().

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 267 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 253 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 294 of file mic.c.

References MIC_getMean().

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 336 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 214 of file mic.c.

References ADC0, DMADRV_PeripheralMemory(), dmadrvDataSize2, and dmadrvPeripheralSignal_ADC0_SCAN.