Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ignore_direct radio option #631

Closed
wants to merge 1 commit into from
Closed
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
1 change: 1 addition & 0 deletions meshtastic/config.options
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

# Max of three ignored nodes for our testing
*LoRaConfig.ignore_incoming max_count:3
*LoRaConfig.ignore_direct max_size:3

*LoRaConfig.tx_power int_size:8
*LoRaConfig.bandwidth int_size:16
Expand Down
8 changes: 8 additions & 0 deletions meshtastic/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1006,6 +1006,14 @@ message Config {
* Sets the ok_to_mqtt bit on outgoing packets
*/
bool config_ok_to_mqtt = 105;

/*
* For testing this simulate a node which cannot be heared directly.
* All comunications received from this node will be dropped.
* Due to space constraints in the header, only the last byte of
* the relayer is transmited, thus only the last byte can be checked.
*/
bytes ignore_direct = 106;
}

message BluetoothConfig {
Expand Down
Loading