removed unused defines

This commit is contained in:
medentem 2025-01-06 16:25:12 -06:00
parent 10103fe058
commit 2e3283b2fb
2 changed files with 1 additions and 7 deletions

View File

@ -64,12 +64,6 @@ enum RxSource {
// Currently set to 1 hour because that is the minimum interval for nodeinfo broadcasts // Currently set to 1 hour because that is the minimum interval for nodeinfo broadcasts
#define RECENCY_THRESHOLD_MINUTES 60 #define RECENCY_THRESHOLD_MINUTES 60
#define NUM_UNKNOWN_NODE_COUNTERS 64
#define BITS_PER_UNKNOWN_NODE_COUNTER 4
#define BLOOM_HASH_FUNCTIONS 2
typedef int ErrorCode; typedef int ErrorCode;
/// Alloc and free packets to our global, ISR safe pool /// Alloc and free packets to our global, ISR safe pool

View File

@ -211,7 +211,7 @@ class NodeDB
bool saveChannelsToDisk(); bool saveChannelsToDisk();
bool saveDeviceStateToDisk(); bool saveDeviceStateToDisk();
bool isValidCandidateForCoverage(const meshtastic_NodeInfoLite &node) bool isValidCandidateForCoverage(const meshtastic_NodeInfoLite &node);
}; };
extern NodeDB *nodeDB; extern NodeDB *nodeDB;