From 69d19ea6ca4d74124905c289da69f6481ab1a6b8 Mon Sep 17 00:00:00 2001 From: mattzzw Date: Sun, 14 Dec 2025 19:28:21 +0100 Subject: [PATCH] Set default of flood_advert_interval to 48h This should help reducing congestion/noise in big meshes. --- examples/simple_repeater/MyMesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple_repeater/MyMesh.cpp b/examples/simple_repeater/MyMesh.cpp index 5fb1a729..d7af1341 100644 --- a/examples/simple_repeater/MyMesh.cpp +++ b/examples/simple_repeater/MyMesh.cpp @@ -697,7 +697,7 @@ MyMesh::MyMesh(mesh::MainBoard &board, mesh::Radio &radio, mesh::MillisecondCloc _prefs.cr = LORA_CR; _prefs.tx_power_dbm = LORA_TX_POWER; _prefs.advert_interval = 1; // default to 2 minutes for NEW installs - _prefs.flood_advert_interval = 12; // 12 hours + _prefs.flood_advert_interval = 48; // 48 hours _prefs.flood_max = 64; _prefs.interference_threshold = 0; // disabled