From a4d76b2f9445afeeec6d02de892a6301e39dd633 Mon Sep 17 00:00:00 2001 From: medentem Date: Fri, 3 Jan 2025 21:07:12 -0600 Subject: [PATCH] updated config values to match optimal testing outcome --- src/mesh/MeshTypes.h | 6 +++--- userPrefs.jsonc | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mesh/MeshTypes.h b/src/mesh/MeshTypes.h index 04606a3ca..ac32c7970 100644 --- a/src/mesh/MeshTypes.h +++ b/src/mesh/MeshTypes.h @@ -53,9 +53,9 @@ enum RxSource { #define NUM_HASH_FUNCTIONS 2 // Base forwarding probability - never drop below this value -// 0.2 seems suitable because the worst case False Positive Rate of the -// coverage filter is 37%. That's if its fully saturated with 60 unique nodes. -#define BASE_FORWARD_PROB 0.2f +// 0.2 could be suitable because the worst case False Positive Rate of the +// coverage filter is 37%. That's if its saturated with 60 unique nodes. +#define BASE_FORWARD_PROB 0.0f // Coverage scaling factor #define COVERAGE_SCALE_FACTOR 4.0f diff --git a/userPrefs.jsonc b/userPrefs.jsonc index f43f9508c..33cff6abd 100644 --- a/userPrefs.jsonc +++ b/userPrefs.jsonc @@ -35,5 +35,5 @@ // "USERPREFS_USE_ADMIN_KEY_1": "{}", // "USERPREFS_USE_ADMIN_KEY_2": "{}", // "USERPREFS_NODEINFO_BROADCAST_CHANNEL_HASH": "8", - "USERPREFS_USE_COVERAGE_FILTER": "true", + "USERPREFS_USE_COVERAGE_FILTER": "true" }