AudioRecord and FFT/MSE comparison. Call AudioRecord_demo for control record and AudioSample for subsequent recordings.

Dependencies:   CMSIS_DSP_401 STM32L4xx_HAL_Driver

Fork of OneHopeOnePrayer by Senior Design: Sound Monitor

Embed: (wiki syntax)

« Back to documentation index

LED Functions

LED Functions
[Exported Functions]

Functions

void BSP_LED_Init (Led_TypeDef Led)
 Configures LED GPIO.
void BSP_LED_On (Led_TypeDef Led)
 Turns selected LED On.
void BSP_LED_Off (Led_TypeDef Led)
 Turns selected LED Off.
void BSP_LED_Toggle (Led_TypeDef Led)
 Toggles the selected LED.

Function Documentation

void BSP_LED_Init ( Led_TypeDef  Led )

Configures LED GPIO.

Parameters:
Led,:LED to be configured. This parameter can be one of the following values:

  • LED2
Return values:
None

Definition at line 171 of file stm32l4xx_nucleo.c.

void BSP_LED_Off ( Led_TypeDef  Led )

Turns selected LED Off.

Parameters:
Led,:Specifies the Led to be set off. This parameter can be one of following parameters:

  • LED2
Return values:
None

Definition at line 205 of file stm32l4xx_nucleo.c.

void BSP_LED_On ( Led_TypeDef  Led )

Turns selected LED On.

Parameters:
Led,:Specifies the Led to be set on. This parameter can be one of following parameters:

  • LED2
Return values:
None

Definition at line 193 of file stm32l4xx_nucleo.c.

void BSP_LED_Toggle ( Led_TypeDef  Led )

Toggles the selected LED.

Parameters:
Led,:Specifies the Led to be toggled. This parameter can be one of following parameters:

  • LED2
Return values:
None

Definition at line 217 of file stm32l4xx_nucleo.c.