xmos / vocalfusion-rpi-setup

3 stars 13 forks source link

Add support for USB devices #36

Closed xluciano closed 2 years ago

xluciano commented 2 years ago

v4.3.1 supports only I2S devices. I did a quick test and I managed to record and playback audio on an AVS device SDK connected to an XVF3615 UA device by replacing the content of .asoundrc with the following:

pcm.!default {
  type asym
  capture.pcm "mic"
  playback.pcm "speaker"
}
pcm.mic {
  type plug
  slave {
    pcm "hw:1,0"
  }
}

pcm.speaker {
  type plug
  slave {
    pcm "hw:1,0"
  }
}

If in the future we decide to add support for USB devices, this change will be necessary.

xluciano commented 2 years ago

Fixed by https://github.com/xmos/vocalfusion-rpi-setup/releases/tag/v5.0.0