Skip to content
Draft
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions meshtastic/admin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,16 @@ message AdminMessage {
*/
uint32 remove_ignored_node = 48;

/*
* Set specified node-num to be muted
*/
uint32 set_muted_node = 49;

/*
* Set specified node-num to be heard / not-muted
*/
uint32 remove_muted_node = 50;

/*
* Begins an edit transaction for config, module config, owner, and channel settings changes
* This will delay the standard *implicit* save to the file system and subsequent reboot behavior until committed (commit_edit_settings)
Expand Down
2 changes: 1 addition & 1 deletion meshtastic/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ message Config {
enum DeprecatedGpsCoordinateFormat {
UNUSED = 0;
}

/*
* Unit display preference
*/
Expand Down
20 changes: 10 additions & 10 deletions meshtastic/device_ui.proto
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ message DeviceUIConfig {
* true for analog clockface, false for digital clockface
*/
bool is_clockface_analog = 18;

/*
* How the GPS coordinates are formatted on the OLED screen.
*/
GpsCoordinateFormat gps_format = 19;

/*
/*
* How the GPS coordinates are displayed on the OLED screen.
*/
enum GpsCoordinateFormat {
Expand All @@ -103,38 +103,38 @@ message DeviceUIConfig {
* DD.DDDDDD DDD.DDDDDD
*/
DEC = 0;
/*

/*
* GPS coordinates are displayed in the degrees minutes seconds format:
* DD°MM'SS"C DDD°MM'SS"C, where C is the compass point representing the locations quadrant
*/
DMS = 1;
DMS = 1;

/*
* Universal Transverse Mercator format:
* ZZB EEEEEE NNNNNNN, where Z is zone, B is band, E is easting, N is northing
*/
UTM = 2;

/*
* Military Grid Reference System format:
* ZZB CD EEEEE NNNNN, where Z is zone, B is band, C is the east 100k square, D is the north 100k square,
* E is easting, N is northing
*/
MGRS = 3;

/*
* Open Location Code (aka Plus Codes).
*/
OLC = 4;

/*
* Ordnance Survey Grid Reference (the National Grid System of the UK).
* Format: AB EEEEE NNNNN, where A is the east 100k square, B is the north 100k square,
* E is the easting, N is the northing
*/
OSGR = 5;

/*
* Maidenhead Locator System
* Described here: https://en.wikipedia.org/wiki/Maidenhead_Locator_System
Expand Down
6 changes: 6 additions & 0 deletions meshtastic/deviceonly.proto
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,12 @@ message NodeInfoLite {
* LSB 0 is_key_manually_verified
*/
uint32 bitfield = 13;

/*
* True if node has been muted
* Persists between NodeDB internal clean ups
*/
bool is_muted = 14;
}

/*
Expand Down