diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4ee82d74..b9926a10 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,10 @@ sc_usb_audio Change Log ======================= +6.11.3 +------ + - RESOLVED: (Major) Streaming issue when mixer not enabled (introduced in 6.11.2) + 6.11.2 ------ - RESOLVED: (Major) Enumeration issue when MAX_MIX_COUNT > 0 only. Introduced in mixer diff --git a/README.rst b/README.rst index 638ad8b2..3da27d98 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ USB Audio Shared ................ -:Latest release: 6.11.2rc2 +:Latest release: 6.11.3rc0 :Maintainer: xross :Description: USB Audio Shared Components. For use in the XMOS USB Audio Refererence Designs. diff --git a/module_usb_audio/audio.xc b/module_usb_audio/audio.xc index 56155f85..39b03666 100755 --- a/module_usb_audio/audio.xc +++ b/module_usb_audio/audio.xc @@ -245,6 +245,7 @@ static inline unsigned DoSampleTransfer(chanend c_out, int readBuffNo, unsigned else { #ifndef MIXER // Interfaces straight to decouple() + inuint(c_out); #if NUM_USB_CHAN_IN > 0 #pragma loop unroll for(int i = 0; i < I2S_CHANS_ADC; i++) diff --git a/module_usb_audio/devicedefines.h b/module_usb_audio/devicedefines.h index 55cf5a6e..028b94e4 100644 --- a/module_usb_audio/devicedefines.h +++ b/module_usb_audio/devicedefines.h @@ -469,7 +469,7 @@ * @brief Device firmware version number in Binary Coded Decimal format: 0xJJMN where JJ: major, M: minor, N: sub-minor version number. */ #ifndef BCD_DEVICE_N -#define BCD_DEVICE_N 2 +#define BCD_DEVICE_N 3 #endif /**