[fix](trx-backend-soapysdr): boost AM audio further

Raise the AM audio AGC target and headroom again so the restored envelope demod path plays at a stronger level.

Co-authored-by: Stan Grams <sjg@haxx.space>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-03 02:02:15 +01:00
parent 605531184b
commit 7188d38610
@@ -14,7 +14,7 @@ fn agc_for_mode(mode: &RigMode, audio_sample_rate: u32) -> SoftAgc {
let sr = audio_sample_rate.max(1) as f32;
match mode {
RigMode::CW | RigMode::CWR => SoftAgc::new(sr, 1.0, 50.0, 0.5, 30.0),
RigMode::AM => SoftAgc::new(sr, 250.0, 4_000.0, 0.8, 40.0),
RigMode::AM => SoftAgc::new(sr, 200.0, 3_500.0, 0.95, 46.0),
_ => SoftAgc::new(sr, 5.0, 500.0, 0.5, 30.0),
}
}