mdsimon2
Major Contributor
Have you added dtoverlay = hifiberry-digi to your config.txt? Assuming you are using Ubuntu config.txt is located at /boot/firmware/config.txt.
Michael
And I should reiterate that I can see absolutely no reason to use a HifiBerry DIGI+ I/O as you can just use the TOSLINK input functionality of the MOTU Ultralite Mk5. All you need to do is set the MOTU clock source to optical and use channels 12 and 13 from the MOTU as inputs (assuming your are running at 96 kHz). The start of a CamillaDSP yml file showing such a setup is shown below.
Code:
---
devices:
samplerate: 96000
chunksize: 4096
enable_resampling: true
resampler_type: BalancedAsync
silence_threshold: -100
silence_timeout: 5.0
capture:
type: Alsa
channels: 16
device: "hw:UltraLitemk5"
format: S24LE3
playback:
type: Alsa
channels: 18
device: "hw:UltraLitemk5"
format: S24LE3
mixers:
2to10chan:
channels:
in: 16
out: 18
mapping:
- dest: 0
sources:
- channel: 12
gain: 0
inverted: false
- dest: 1
sources:
- channel: 13
gain: 0
inverted: false
Michael