Skip to content

Commit

Permalink
Merge pull request #35 from kamilsss655/rc16.3
Browse files Browse the repository at this point in the history
6.25 bw was wider than 8.33 so their values have been swapped.
  • Loading branch information
kamilsss655 committed Jan 3, 2024
2 parents bbdbab2 + eb7cd20 commit 7cf8131
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions driver/bk4819.c
Original file line number Diff line number Diff line change
Expand Up @@ -545,17 +545,17 @@ 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
};

// filter bandwidth stays the same when signal is low
const uint16_t listenBWRegValues[5] = {
0x3628, // 25
0x7F08, // 12.5
0x1348, // 8.33
0x4858, // 6.25
0x4858, // 8.33
0x1348, // 6.25
0x0058 // 5
};

Expand Down

0 comments on commit 7cf8131

Please sign in to comment.