Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions meshtastic/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -924,6 +924,21 @@ message Config {
* Brazil 902MHz
*/
BR_902 = 26;

/*
* EU 866MHz RFID band (ETSI EN 302 208)
*/
EU_866 = 27;

/*
* EU 868MHz band, with narrow presets
*/
NARROW_868 = 28;

/*
* US 433MHz Amateur Use band
*/
HAM_US433 = 29;
}

/*
Expand Down Expand Up @@ -985,6 +1000,35 @@ 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;
}

/*
Expand Down
Loading