Added DSP interface to audio() proto

This commit is contained in:
Ross Owen
2016-04-19 12:04:04 +01:00
parent 01a4ac4c65
commit b28ca58c8d

View File

@@ -3,6 +3,8 @@
#include "devicedefines.h" #include "devicedefines.h"
#include "dfu_interface.h" #include "dfu_interface.h"
#include "dsp.h"
/** The audio driver thread. /** The audio driver thread.
* *
* This function drives I2S ports and handles samples to/from other digital * 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) #if (NUM_PDM_MICS > 0)
, chanend c_pdm_in , chanend c_pdm_in
#endif #endif
, client dsp_if i_dsp
); );
void SpdifTxWrapper(chanend c_spdif_tx); void SpdifTxWrapper(chanend c_spdif_tx);