From: Bdale Garbee Date: Sat, 26 Feb 2022 05:11:17 +0000 (-0700) Subject: dial it down a bit more to not exceed +10 dBm, or 10 mW X-Git-Tag: 1.9.11~1^2~9^2^2~2 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=d0160ed97b432d59e2111d8b17580b9a83e0b03b dial it down a bit more to not exceed +10 dBm, or 10 mW --- diff --git a/src/drivers/ao_cc1200.c b/src/drivers/ao_cc1200.c index 7ac32e18..4ddc96ce 100644 --- a/src/drivers/ao_cc1200.c +++ b/src/drivers/ao_cc1200.c @@ -737,11 +737,11 @@ ao_radio_get(uint8_t len) last_radio_10mw = ao_config.radio_10mw; /* * 0x37 "should" be 10dBm, but measurements on TBT - * v4.0 show that too hot by a about 1.5dB, so use - * 0x34 to make sure we're in spec. + * v4.0 show that too hot, so use * 0x32 to make sure + * we're in spec. */ if (ao_config.radio_10mw) - ao_radio_reg_write(CC1200_PA_CFG1, 0x34); + ao_radio_reg_write(CC1200_PA_CFG1, 0x32); else ao_radio_reg_write(CC1200_PA_CFG1, 0x3f); }