We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 906b247 commit d211676Copy full SHA for d211676
1 file changed
src/cc1101.py
@@ -747,6 +747,11 @@ def setOutputPower(self, power):
747
# - 434 MHz band: 387–464 MHz
748
# - 868 MHz band: 779–<890 MHz
749
# - 915 MHz band: 890–928 MHz
750
+ #
751
+ # Note: The valid frequency range 779-928 MHz from setFrequency() is split at 890 MHz
752
+ # to use appropriate PA_TABLE values for the 868 MHz ISM band (863-870 MHz) vs the
753
+ # 915 MHz ISM band (902-928 MHz). This provides better power calibration for each
754
+ # sub-band rather than using a single set of PA values for the entire range.
755
if self._freq < 348.0:
756
# 315 MHz band
757
f = 0
0 commit comments