
lab 1 code
Dependencies: CMSIS-DSP_for_STM32F746G BSP_DISCO_F746NG
signal_processing.h
- Committer:
- justenmg
- Date:
- 2020-01-28
- Revision:
- 34:5bf89ab5e247
- Parent:
- 25:5412779376a7
File content as of revision 34:5bf89ab5e247:
/** ****************************************************************************** * @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" void initalize_signal_processing(void); void process_audio_channel_signals(float* L_channel, float* R_channel, uint16_t Signal_Length);