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 bool to enable LoRa transport for NeighborInfo #618

Merged
merged 2 commits into from
Nov 8, 2024
Merged
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
8 changes: 7 additions & 1 deletion meshtastic/module_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,15 @@ message ModuleConfig {

/*
* Interval in seconds of how often we should try to send our
* Neighbor Info to the mesh
* Neighbor Info (minimum is 14400, i.e., 4 hours)
*/
uint32 update_interval = 2;

/*
* Whether in addition to sending it to MQTT and the PhoneAPI, our NeighborInfo should be transmitted over LoRa.
* Note that this is not available on a channel with default key and name.
*/
bool transmit_over_lora = 3;
}

/*
Expand Down
Loading