Skip to content
Open
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 @@ -2,7 +2,7 @@

package meshtastic;

import "meshtastic/channel.proto";

Check failure on line 5 in meshtastic/admin.proto

View workflow job for this annotation

GitHub Actions / build

import "meshtastic/channel.proto": file does not exist
import "meshtastic/config.proto";
import "meshtastic/connection_status.proto";
import "meshtastic/device_ui.proto";
Expand Down Expand Up @@ -414,6 +414,16 @@
*/
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
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
8 changes: 7 additions & 1 deletion meshtastic/mesh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1638,12 +1638,18 @@ message NodeInfo {
*/
bool is_ignored = 11;

/*
* True if node has been muted
* Persistes between NodeDB internal clean ups
*/
bool is_muted = 12;

/*
* True if node public key has been verified.
* Persists between NodeDB internal clean ups
* LSB 0 of the bitfield
*/
bool is_key_manually_verified = 12;
bool is_key_manually_verified = 13;
}

/*
Expand Down
Loading