
lab 1 code
Dependencies: CMSIS-DSP_for_STM32F746G BSP_DISCO_F746NG
signal_processing.h
- Committer:
- bmazzeo
- Date:
- 2019-12-31
- Revision:
- 23:d938f87dd1ee
- Child:
- 25:5412779376a7
File content as of revision 23:d938f87dd1ee:
/** ****************************************************************************** * @file signal_processing.h * @author Brian Mazzeo * @date 2020 * @brief This file provides a set of code for signal processing in 487. * Parts are taken from example code from STMIcroelectronics ****************************************************************************** * @attention * This code was specifically developed for BYU ECEn 487 course * Introduction to Digital Signal Processing. * * ****************************************************************************** */ #include "mbed.h" #include "stm32746g_discovery_lcd.h" /** * @brief Process audio channel signals * @param L_channel: Pointer to Left channel data (float) * @param R_channel: Pointer to Right channel data (float) * @param Signal_Length: length of data to process * @retval None */ void process_audio_channel_signals(float* L_channel, float* R_channel, uint16_t Signal_Length);