DragonOS 6.12.y for the uConsole and DevTerm

I tested the latest DragonOS with my CM5, after the Trixie setup stop workin with SDR Brown (don’t know what i did or didn’t ..but the Sinks diseaper)

After got the DragonOS , did all basic update, and test SDR++ that was there. Was working great, and can ear things there..

Sinks is there too..

When i install the AIO stuff
sudo apt update && sudo apt --install-recommends install hackergadgets-uconsole-aio-board -y && sudo apt install meshtastic-mui -y

I got SDR Brown .. and the Sinks not there anymore. Can’t ear anything.

All the other application run fine (except Meshtastic.. not installing at all).. I will probably remove this card, and re-install the other SD card that have Trixie.. but i still have the same issue with SDR++Bronw there (no audio).. And can’t figure out how re-enable it (or make the Sinks “ALSA Device” appear there. When i click on the Radio Tab.. the only choice i have is “None” or “Network”

I re-flash the microSD card with latest Trixie, installed the recommend AIO stuff… and same result, Sink only display None or Network … all other app works well… Is there a CFG i can edit to re-add that audio item… (and where it is)..

Then.. asked the AI Claude.. and found out with him where the issue was… here what i did to re-enable the Sink device :

Create symlink for librtaudio

sudo ln -s /usr/lib/aarch64-linux-gnu/librtaudio.so.7 /usr/lib/aarch64-linux-gnu/librtaudio.so.6

Remove plug-in with issue
cd /usr/lib/sdrpp/plugins/
sudo mv audio_sink.so audio_sink.so.disabled
sudo mv audio_source.so audio_source.so.disabled
sudo mv brown_audio_sink.so brown_audio_sink.so.disabled

Add there (in ModuleInstances) sudo nano ~/.config/sdrpp-brown/config.json

   "PortAudio Sink": {
        "enabled": **true**,
        "module": "new_portaudio_sink"
    },
    "PulseAudio Sink": {
        "enabled": **true**,
        "module": "linux_pulseaudio_sink"
    },

And it’s working now !

note : if SDR++ as never been started.. need to start it once, as the config.json not existing yet. It will be created automaticaly if missing by SDR++

1 Like