From eb7cd20ee94747506bbd20fc8619f0b24c38dd23 Mon Sep 17 00:00:00 2001 From: Nunu Date: Wed, 3 Jan 2024 17:43:06 +0100 Subject: [PATCH] 6.25 bw was wider than 8.33 so their values have been swapped. --- driver/bk4819.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/driver/bk4819.c b/driver/bk4819.c index f998f83a..d232c468 100644 --- a/driver/bk4819.c +++ b/driver/bk4819.c @@ -545,8 +545,8 @@ void BK4819_SetFilterBandwidth(const BK4819_FilterBandwidth_t Bandwidth, const b const uint16_t listenBWRegDynamicValues[5] = { 0x3428, // 25 0x7B08, // 12.5 - 0x1148, // 8.33 - 0x4458, // 6.25 + 0x4458, // 8.33 + 0x1148, // 6.25 0x0058 // 5 }; @@ -554,8 +554,8 @@ void BK4819_SetFilterBandwidth(const BK4819_FilterBandwidth_t Bandwidth, const b const uint16_t listenBWRegValues[5] = { 0x3628, // 25 0x7F08, // 12.5 - 0x1348, // 8.33 - 0x4858, // 6.25 + 0x4858, // 8.33 + 0x1348, // 6.25 0x0058 // 5 };