From 44dc9239bee5098365389d8f8cbebb902d928bda Mon Sep 17 00:00:00 2001 From: Jacob McSwain Date: Fri, 15 Jul 2022 03:04:56 -0500 Subject: [PATCH] baseband: C5000: Set the mic input during early init Otherwise, the "frequency wiggle" is present --- platform/drivers/baseband/HR_C5000_MDx.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/drivers/baseband/HR_C5000_MDx.cpp b/platform/drivers/baseband/HR_C5000_MDx.cpp index 0138e3fa..4ebfc6a7 100644 --- a/platform/drivers/baseband/HR_C5000_MDx.cpp +++ b/platform/drivers/baseband/HR_C5000_MDx.cpp @@ -163,6 +163,7 @@ void HR_Cx000< M >::fmMode() writeReg(M::CONFIG, 0x81, 0x00); // Mask other interrupts writeReg(M::CONFIG, 0x60, 0x00); // Disable both analog and DMR transmission writeReg(M::CONFIG, 0x00, 0x28); // Reset register + writeReg(M::CONFIG, 0x0E, 0x40 | 0x04); // Set the mic input during early init, if we don't the "frequency wiggle" is present } template< class M >