I'm checking the USB audio in/out and MIDI in/out with XK-AUDIO-216-MC.
Following is my setting of USB audio (2in/2out) and MIDI (in/out) in Makefile.
Code: Select all
XCC_FLAGS_2i2o2mxxxx = $(BUILD_FLAGS) -DNUM_USB_CHAN_OUT=2 -DNUM_USB_CHAN_IN=2 -DMIDI=1 -DSPDIF_TX=0 -DSPDIF_RX=0
Then, I connected to PC with the USB cable. Thesycon windows driver (Ver.3.34) had been already installed into the PC.
I played sine wave from USB audio out - "Analogue 1", and checked the recorded wave data from USB audio in - "Analogue 1".
The wave data alternately became zero.
I tried with MME, DirectSound, ASIO, several sampling rates and bits, but the results were the same.
I tested 2 versions of USB Audio 2.0 Device Software - Ver.6.12.5 and Ver.6.15.2. the results were the same, too.
When I changed Makefile like following, and checked with same channels, it worked fine.
Code: Select all
XCC_FLAGS_2i10o10mxxxx = $(BUILD_FLAGS) -DNUM_USB_CHAN_OUT=10 -DNUM_USB_CHAN_IN=10 -DMIDI=1 -DSPDIF_TX=0 -DSPDIF_RX=0
What should I do for it?
Thanks in advance for your reply.