diff --git a/meshtastic/localonly.proto b/meshtastic/localonly.proto index 132aec1..4b51795 100644 --- a/meshtastic/localonly.proto +++ b/meshtastic/localonly.proto @@ -106,6 +106,11 @@ message LocalModuleConfig { */ ModuleConfig.RemoteHardwareConfig remote_hardware = 10; + /* + * The part of the config that is specific to the Neighbor Info module + */ + ModuleConfig.NeighborInfoConfig neighbor_info = 11; + /* * A version integer used to invalidate old save files when we make * incompatible changes This integer is set at build time and is private to diff --git a/meshtastic/module_config.proto b/meshtastic/module_config.proto index f186af0..5008afb 100644 --- a/meshtastic/module_config.proto +++ b/meshtastic/module_config.proto @@ -577,6 +577,11 @@ message ModuleConfig { * TODO: REPLACE */ RemoteHardwareConfig remote_hardware = 9; + + /* + * TODO: REPLACE + */ + NeighborInfoConfig neighbor_info = 10; } }