diff --git a/src/config/BoardConfig.h b/src/config/BoardConfig.h index f99f2f1..7fcbaa6 100644 --- a/src/config/BoardConfig.h +++ b/src/config/BoardConfig.h @@ -22,10 +22,10 @@ // TCXO voltage: 1.8V for T-Deck Plus integrated SX1262 (Ratputer Cap LoRa uses 3.0V/0x06) #define LORA_TCXO_VOLTAGE 0x02 // MODE_TCXO_1_8V_6X #define LORA_DEFAULT_FREQ 915000000 -#define LORA_DEFAULT_BW 250000 // Balanced preset +#define LORA_DEFAULT_BW 125000 // Balanced preset #define LORA_DEFAULT_SF 9 #define LORA_DEFAULT_CR 5 -#define LORA_DEFAULT_TX_POWER 14 // Balanced preset +#define LORA_DEFAULT_TX_POWER 17 // Balanced preset #define LORA_DEFAULT_PREAMBLE 18 // --- Shared SPI Bus (display + LoRa + SD) --- diff --git a/src/ui/screens/LvSettingsScreen.cpp b/src/ui/screens/LvSettingsScreen.cpp index f90c866..a4be9df 100644 --- a/src/ui/screens/LvSettingsScreen.cpp +++ b/src/ui/screens/LvSettingsScreen.cpp @@ -23,9 +23,9 @@ struct RadioPresetLv { uint8_t sf; uint32_t bw; uint8_t cr; int8_t txPower; long preamble; }; static const RadioPresetLv LV_PRESETS[] = { - {"Balanced", 9, 250000, 5, 14, 18}, - {"Long Range", 12, 125000, 8, 17, 18}, - {"Fast", 7, 500000, 5, 10, 18}, + {"Balanced", 9, 125000, 5, 17, 18}, + {"Long Range", 12, 62500, 8, 22, 18}, + {"Fast", 7, 250000, 5, 14, 18}, }; static constexpr int LV_NUM_PRESETS = 3; diff --git a/src/ui/screens/SettingsScreen.cpp b/src/ui/screens/SettingsScreen.cpp index a824aec..f4e82c6 100644 --- a/src/ui/screens/SettingsScreen.cpp +++ b/src/ui/screens/SettingsScreen.cpp @@ -26,9 +26,9 @@ struct RadioPreset { }; static const RadioPreset PRESETS[] = { - {"Balanced", 9, 250000, 5, 14, 18}, - {"Long Range", 12, 125000, 8, 17, 18}, - {"Fast", 7, 500000, 5, 10, 18}, + {"Balanced", 9, 125000, 5, 17, 18}, + {"Long Range", 12, 62500, 8, 22, 18}, + {"Fast", 7, 250000, 5, 14, 18}, }; static constexpr int NUM_PRESETS = 3;