From 796c868255b79ea34f5a18ab6e2c3b121432ba26 Mon Sep 17 00:00:00 2001 From: Allen Hill Date: Sat, 20 Jun 2026 20:29:49 -0700 Subject: [PATCH] Only play (headset) on after first pause --- src/avclandrv.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/avclandrv.c b/src/avclandrv.c index 175b3e5..57fd947 100644 --- a/src/avclandrv.c +++ b/src/avclandrv.c @@ -260,7 +260,10 @@ static inline void resetStatusTimer() { // Sets CD_mode to play and resets timer count (so that the next interrupt is in // 1 sec) static void AVCLAN_startPlaying() { - AVCLAN_micPlayPause(); + static bool havePlayed = false; + if (havePlayed) + AVCLAN_micPlayPause(); + havePlayed |= true; CD_Mode = stPlay; resetStatusTimer(); }