From fa787debd15998fec27a6bc5b237604e41f74b01 Mon Sep 17 00:00:00 2001 From: Shawn Date: Sat, 13 Jun 2026 22:24:06 -0400 Subject: [PATCH] Add stable audio profile: period=512 (10.6ms) for Pi 4B stability --- src/system/audio.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/system/audio.py b/src/system/audio.py index cd56d1e..d38f682 100644 --- a/src/system/audio.py +++ b/src/system/audio.py @@ -90,6 +90,12 @@ LATENCY_PROFILES: dict[str, dict] = { "rate": 48000, "rt_priority": 80, }, + "stable": { + "period": 512, + "nperiods": 2, + "rate": 48000, + "rt_priority": 60, + }, } # ── System paths ──────────────────────────────────────────────────