From bb14b6018d766375e35a7a1cdd6b1de9c6c27a18 Mon Sep 17 00:00:00 2001 From: Ross Owen Date: Fri, 6 Sep 2013 14:21:46 +0100 Subject: [PATCH] First DSD 16 samples were being output as all 1 --- module_usb_audio/audio.xc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module_usb_audio/audio.xc b/module_usb_audio/audio.xc index fcace0e4..1daa6250 100755 --- a/module_usb_audio/audio.xc +++ b/module_usb_audio/audio.xc @@ -105,8 +105,8 @@ extern void device_reboot(void); unsigned dsdMarker = DSD_MARKER_2; /* This alternates between DSD_MARKER_1 and DSD_MARKER_2 */ int dsdCount = 0; int everyOther = 1; - unsigned dsdSample_l = 0x69696969; - unsigned dsdSample_r = 0x69696969; + unsigned dsdSample_l = 0x69690000; + unsigned dsdSample_r = 0x69690000; #endif int counter = 0;