Merge pull request #618 from GUVWAF/NeighborLoRa

Add bool to enable LoRa transport for NeighborInfo
pull/619/head
Ben Meadors 2024-11-08 07:17:20 -06:00 zatwierdzone przez GitHub
commit 834915aa04
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -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;
}
/*