From d0160ed97b432d59e2111d8b17580b9a83e0b03b Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Fri, 25 Feb 2022 22:11:17 -0700 Subject: [PATCH] dial it down a bit more to not exceed +10 dBm, or 10 mW --- src/drivers/ao_cc1200.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } -- 2.30.2