From 6f437dd699bafa01309bc0006179cecc3b25c893 Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Mon, 15 Dec 2025 15:46:49 -0600 Subject: [PATCH 1/3] Add LONG_TURBO preset to config.proto Added LONG_TURBO preset for long-range communication. --- meshtastic/config.proto | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index 4d352c1..d612c56 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -978,6 +978,14 @@ message Config { * It is not legal to use in all regions due to this wider bandwidth. */ SHORT_TURBO = 8; + + /* + * Long Range - Turbo + * This preset performs similarly to LongFast, but with 500Khz bandwidth. + * There is some debate about the legality of 250Khz channels in some regions, + * and this preset would present an unombigously legal alternative. + */ + LONG_TURBO = 9; } /* From 09219845724af1b37e8a2a7ad55b3e4d7334aa42 Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Mon, 15 Dec 2025 15:49:54 -0600 Subject: [PATCH 2/3] Fix typo in config.proto comment --- meshtastic/config.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index d612c56..b6d6a31 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -983,7 +983,7 @@ message Config { * Long Range - Turbo * This preset performs similarly to LongFast, but with 500Khz bandwidth. * There is some debate about the legality of 250Khz channels in some regions, - * and this preset would present an unombigously legal alternative. + * and this preset would present an unambiguously legal alternative. */ LONG_TURBO = 9; } From 2567b7aa4e0d35c40ba5dd1a03ec785a457d5a99 Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Mon, 15 Dec 2025 16:08:51 -0600 Subject: [PATCH 3/3] Update LONG_TURBO comment in config.proto Removed comment about legality of 250Khz channels. --- meshtastic/config.proto | 2 -- 1 file changed, 2 deletions(-) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index b6d6a31..b7db6ec 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -982,8 +982,6 @@ message Config { /* * Long Range - Turbo * This preset performs similarly to LongFast, but with 500Khz bandwidth. - * There is some debate about the legality of 250Khz channels in some regions, - * and this preset would present an unambiguously legal alternative. */ LONG_TURBO = 9; }