From b28ca58c8d03ae6509cb16d6f82cf76e7a814792 Mon Sep 17 00:00:00 2001 From: Ross Owen Date: Tue, 19 Apr 2016 12:04:04 +0100 Subject: [PATCH] Added DSP interface to audio() proto --- module_usb_audio/audio.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/module_usb_audio/audio.h b/module_usb_audio/audio.h index 24622ca3..c5c97f87 100644 --- a/module_usb_audio/audio.h +++ b/module_usb_audio/audio.h @@ -3,6 +3,8 @@ #include "devicedefines.h" #include "dfu_interface.h" +#include "dsp.h" + /** The audio driver thread. * * This function drives I2S ports and handles samples to/from other digital @@ -29,6 +31,7 @@ void audio(chanend c_in, #if (NUM_PDM_MICS > 0) , chanend c_pdm_in #endif + , client dsp_if i_dsp ); void SpdifTxWrapper(chanend c_spdif_tx);