From 5ca3d9169a1d0c2767d9311d2d2bb7dba14de18f Mon Sep 17 00:00:00 2001 From: GUVWAF Date: Sat, 11 Feb 2023 17:17:11 +0100 Subject: [PATCH] Only set node_info_broadcast_secs when not a Router --- src/mesh/NodeDB.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mesh/NodeDB.cpp b/src/mesh/NodeDB.cpp index f8cdaf547..5c28f5261 100644 --- a/src/mesh/NodeDB.cpp +++ b/src/mesh/NodeDB.cpp @@ -170,7 +170,8 @@ void NodeDB::installDefaultConfig() config.lora.hop_limit = HOP_RELIABLE; config.position.gps_enabled = true; config.position.position_broadcast_smart_enabled = true; - config.device.node_info_broadcast_secs = 3 * 60 * 60; + if (config.device.role != meshtastic_Config_DeviceConfig_Role_ROUTER) + config.device.node_info_broadcast_secs = 3 * 60 * 60; config.device.serial_enabled = true; resetRadioConfig(); strncpy(config.network.ntp_server, "0.pool.ntp.org", 32);