From 00a22fc38c315db20b89324a90d0a6ee96bf05e3 Mon Sep 17 00:00:00 2001 From: Crsarmv7l <85343771+Crsarmv7l@users.noreply.github.com> Date: Wed, 27 Mar 2024 08:26:54 -0400 Subject: [PATCH] Fix Notes --- src/modules/CC1101/CC1101.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/CC1101/CC1101.cpp b/src/modules/CC1101/CC1101.cpp index 7374d6be..3463d15f 100644 --- a/src/modules/CC1101/CC1101.cpp +++ b/src/modules/CC1101/CC1101.cpp @@ -503,7 +503,7 @@ int16_t CC1101::CalcRxBandwidth() { // Uncertainty ~ +/- 40ppm for a cheap CC1101 // Uncertainty * 2 for both transmitter and receiver float uncertainty = (getFrequency() * 40 * 2); - uncertainty = (uncertainty/1000); //Since bitrate is in khz + uncertainty = (uncertainty/1000); //Since bitrate is in kBit float minbw = (getBitRate() + uncertainty); int possibles[16] = {58, 68, 81, 102, 116, 135, 162, 203, 232, 270, 325, 406, 464, 541, 650, 812};