Skip to content

Commit 805e5e7

Browse files
authored
Merge pull request #769 from ford-jones/7943-mute-target
Mute: channels
2 parents 46b81e8 + 91909ce commit 805e5e7

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

meshtastic/channel.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ message ChannelSettings {
8686
* Per-channel module settings.
8787
*/
8888
ModuleSettings module_settings = 7;
89+
90+
/*
91+
* Whether or not we should receive notifactions / alerts through this channel
92+
*/
93+
bool mute = 8;
8994
}
9095

9196
/*

meshtastic/config.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ message Config {
603603
enum DeprecatedGpsCoordinateFormat {
604604
UNUSED = 0;
605605
}
606-
606+
607607
/*
608608
* Unit display preference
609609
*/

meshtastic/device_ui.proto

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ message DeviceUIConfig {
8888
* true for analog clockface, false for digital clockface
8989
*/
9090
bool is_clockface_analog = 18;
91-
91+
9292
/*
9393
* How the GPS coordinates are formatted on the OLED screen.
9494
*/
9595
GpsCoordinateFormat gps_format = 19;
9696

97-
/*
97+
/*
9898
* How the GPS coordinates are displayed on the OLED screen.
9999
*/
100100
enum GpsCoordinateFormat {
@@ -103,38 +103,38 @@ message DeviceUIConfig {
103103
* DD.DDDDDD DDD.DDDDDD
104104
*/
105105
DEC = 0;
106-
107-
/*
106+
107+
/*
108108
* GPS coordinates are displayed in the degrees minutes seconds format:
109109
* DD°MM'SS"C DDD°MM'SS"C, where C is the compass point representing the locations quadrant
110110
*/
111-
DMS = 1;
112-
111+
DMS = 1;
112+
113113
/*
114114
* Universal Transverse Mercator format:
115115
* ZZB EEEEEE NNNNNNN, where Z is zone, B is band, E is easting, N is northing
116116
*/
117117
UTM = 2;
118-
118+
119119
/*
120120
* Military Grid Reference System format:
121121
* ZZB CD EEEEE NNNNN, where Z is zone, B is band, C is the east 100k square, D is the north 100k square,
122122
* E is easting, N is northing
123123
*/
124124
MGRS = 3;
125-
125+
126126
/*
127127
* Open Location Code (aka Plus Codes).
128128
*/
129129
OLC = 4;
130-
130+
131131
/*
132132
* Ordnance Survey Grid Reference (the National Grid System of the UK).
133133
* Format: AB EEEEE NNNNN, where A is the east 100k square, B is the north 100k square,
134134
* E is the easting, N is the northing
135135
*/
136136
OSGR = 5;
137-
137+
138138
/*
139139
* Maidenhead Locator System
140140
* Described here: https://en.wikipedia.org/wiki/Maidenhead_Locator_System

0 commit comments

Comments
 (0)