R&J / Mbed 2 deprecated 487_Laboratory_3

Dependencies:   mbed BSP_DISCO_F746NG mbed-dsp

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers signal_processing.h Source File

signal_processing.h

Go to the documentation of this file.
00001 /**
00002   ******************************************************************************
00003   * @file    signal_processing.h
00004   * @author  Brian Mazzeo
00005   * @date    2020
00006   * @brief   This file provides a set of code for signal processing in 487.
00007   *          Parts are taken from example code from STMIcroelectronics
00008   ******************************************************************************
00009   * @attention
00010   *          This code was specifically developed for BYU ECEn 487 course 
00011   *          Introduction to Digital Signal Processing.
00012   *
00013   *
00014   ******************************************************************************
00015   */ 
00016 
00017 #include "mbed.h"
00018 #include "stm32746g_discovery_lcd.h"
00019 
00020 
00021 void initalize_signal_processing(void);
00022 void process_audio_channel_signals(float32_t* L_channel_in, float32_t* R_channel_in, float32_t* L_channel_out, float32_t* R_channel_out, uint16_t Signal_Length);