This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 70d918324b6c3df8c05f0302a0d44a73873d3d2b Author: Arjav Patel <[email protected]> AuthorDate: Sat Mar 7 03:48:18 2026 +0530 wireless/lpwan/sx127x: Update default TX power and enable CRC Increase default TX power from 14 to 17 dBm and enable CRC by default to improve link reliability and data integrity. Signed-off-by: Arjav Patel <[email protected]> --- drivers/wireless/lpwan/sx127x/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/wireless/lpwan/sx127x/Kconfig b/drivers/wireless/lpwan/sx127x/Kconfig index b787792da93..2af745e6d42 100644 --- a/drivers/wireless/lpwan/sx127x/Kconfig +++ b/drivers/wireless/lpwan/sx127x/Kconfig @@ -17,7 +17,7 @@ config LPWAN_SX127X_SPIFREQ config LPWAN_SX127X_TXPOWER_DEFAULT int "SX127X default TX power" - default 14 + default 17 config LPWAN_SX127X_PREAMBLE_DEFAULT int "SX127X default preamble length" @@ -34,7 +34,7 @@ config LPWAN_SX127X_MODULATION_DEFAULT config LPWAN_SX127X_CRCON int "SX127X CRC ON" range 0 1 - default 0 + default 1 config LPWAN_SX127X_RXSUPPORT bool "SX127X RX support"
