From 4ec8f9c269712d0a54953be8dc379a8625b3306e Mon Sep 17 00:00:00 2001 From: nomdetom Date: Sat, 20 Dec 2025 01:26:11 +0000 Subject: [PATCH 1/6] new new_presets --- meshtastic/config.proto | 52 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index f1cdc4f..b40a675 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -929,6 +929,21 @@ message Config { * Brazil 902MHz */ BR_902 = 26; + + /* + * EU 866MHz RFID band (ETSI EN 302 208) + */ + EU_866 = 27; + + /* + * EU 866MHz RFID band (ETSI EN 302 208) + */ + NARROW_868 = 28; + + /* + * EU 866MHz RFID band (ETSI EN 302 208) + */ + HAM_US433 = 29; } /* @@ -990,6 +1005,43 @@ message Config { * This preset performs similarly to LongFast, but with 500Khz bandwidth. */ LONG_TURBO = 9; + + /* + * Lite Fast + * Medium range preset optimized for EU 866MHz RFID band with 125kHz bandwidth. + * Comparable link budget to MEDIUM_FAST but compliant with ETSI EN 302 208. + */ + LITE_FAST = 10; + + /* + * Lite Slow + * Medium-to-moderate range preset optimized for EU 866MHz RFID band with 125kHz bandwidth. + * Comparable link budget to LONG_FAST but compliant with ETSI EN 302 208. + */ + LITE_SLOW = 11; + + /* + * Narrow Fast + * Medium-to-moderate range preset optimized for EU 868MHz band with 62.5kHz bandwidth. + * Comparable link budget to SHORT_SLOW, but with half the data rate. + * Intended to avoid interference with other devices. + */ + NARROW_FAST = 12; + + /* + * Narrow Slow + * Moderate range preset optimized for EU 868MHz band with 62.5kHz bandwidth. + * Comparable link budget and data rate to LONG_FAST. + */ + NARROW_SLOW = 13; + + /* + * Ham Fast + * Short range preset optimized for 433MHz band with wide bandwidth. + * Intended for use in amateur radio bands. + */ + HAM_FAST = 14; + } /* From 624e1401e81d429b201b2fb6da0bff79f1edd149 Mon Sep 17 00:00:00 2001 From: Tom <116762865+NomDeTom@users.noreply.github.com> Date: Mon, 22 Dec 2025 12:07:56 +0000 Subject: [PATCH 2/6] Update comments for frequency bands Per @fifieldt --- meshtastic/config.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index b40a675..f07370e 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -936,12 +936,12 @@ message Config { EU_866 = 27; /* - * EU 866MHz RFID band (ETSI EN 302 208) + * EU 868MHz band, with narrow presets */ NARROW_868 = 28; /* - * EU 866MHz RFID band (ETSI EN 302 208) + * US 433MHz Amateur Use band */ HAM_US433 = 29; } From d3c47a533b44ea58bc2f1827c9f375dd3623e49d Mon Sep 17 00:00:00 2001 From: nomdetom Date: Sat, 3 Jan 2026 21:27:47 +0000 Subject: [PATCH 3/6] remove hamfast --- meshtastic/config.proto | 8 -------- 1 file changed, 8 deletions(-) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index f07370e..92b627f 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -1034,14 +1034,6 @@ message Config { * Comparable link budget and data rate to LONG_FAST. */ NARROW_SLOW = 13; - - /* - * Ham Fast - * Short range preset optimized for 433MHz band with wide bandwidth. - * Intended for use in amateur radio bands. - */ - HAM_FAST = 14; - } /* From 16b11a07e3a39451820783c008a8ee200ace416a Mon Sep 17 00:00:00 2001 From: Tom <116762865+NomDeTom@users.noreply.github.com> Date: Tue, 13 Jan 2026 19:23:43 +0000 Subject: [PATCH 4/6] Clean up config.proto by removing extra newline Removed unnecessary blank spaces before EU 866MHz comment. --- meshtastic/config.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index 92b627f..7831f50 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -929,7 +929,7 @@ message Config { * Brazil 902MHz */ BR_902 = 26; - + /* * EU 866MHz RFID band (ETSI EN 302 208) */ From 8a2b324401e34bac0bb0004f435de979ddd40f35 Mon Sep 17 00:00:00 2001 From: Tom <116762865+NomDeTom@users.noreply.github.com> Date: Sat, 17 Jan 2026 17:23:26 +0000 Subject: [PATCH 5/6] Removed US 433MHz Amateur Use band removing ham settings for now. --- meshtastic/config.proto | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index 7831f50..89f70a6 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -931,7 +931,7 @@ message Config { BR_902 = 26; /* - * EU 866MHz RFID band (ETSI EN 302 208) + * EU 866MHz band (Band no. 46b of 2006/771/EC and subsequent amendments) for Non-specific short-range devices (SRD) */ EU_866 = 27; @@ -939,11 +939,6 @@ message Config { * EU 868MHz band, with narrow presets */ NARROW_868 = 28; - - /* - * US 433MHz Amateur Use band - */ - HAM_US433 = 29; } /* From f57b423a395c7a54d3acaa83ac9036e4d9281d9e Mon Sep 17 00:00:00 2001 From: nomdetom Date: Wed, 21 Jan 2026 23:22:15 +0000 Subject: [PATCH 6/6] Update EU 866MHz band references and descriptions in config.proto --- meshtastic/config.proto | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index 89f70a6..7c13b33 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -931,7 +931,7 @@ message Config { BR_902 = 26; /* - * EU 866MHz band (Band no. 46b of 2006/771/EC and subsequent amendments) for Non-specific short-range devices (SRD) + * EU 866MHz band (Band no. 47b of 2006/771/EC and subsequent amendments) for Non-specific short-range devices (SRD) */ EU_866 = 27; @@ -1003,15 +1003,15 @@ message Config { /* * Lite Fast - * Medium range preset optimized for EU 866MHz RFID band with 125kHz bandwidth. - * Comparable link budget to MEDIUM_FAST but compliant with ETSI EN 302 208. + * Medium range preset optimized for EU 866MHz SRD band with 125kHz bandwidth. + * Comparable link budget to MEDIUM_FAST but compliant with Band no. 47b of 2006/771/EC. */ LITE_FAST = 10; /* * Lite Slow - * Medium-to-moderate range preset optimized for EU 866MHz RFID band with 125kHz bandwidth. - * Comparable link budget to LONG_FAST but compliant with ETSI EN 302 208. + * Medium-to-moderate range preset optimized for EU 866MHz SRD band with 125kHz bandwidth. + * Comparable link budget to LONG_FAST but compliant with Band no. 47b of 2006/771/EC. */ LITE_SLOW = 11;