From 344263de8697af492f3faa54781ec9af597e4adc Mon Sep 17 00:00:00 2001 From: Clive Blackledge Date: Sat, 27 Sep 2025 14:27:45 -0700 Subject: [PATCH] Update to include heltec lora32 v4 nodes with 2MB psram --- src/mesh/mesh-pb-constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/mesh-pb-constants.h b/src/mesh/mesh-pb-constants.h index 8679f364c..e392ed964 100644 --- a/src/mesh/mesh-pb-constants.h +++ b/src/mesh/mesh-pb-constants.h @@ -52,7 +52,7 @@ static_assert(sizeof(meshtastic_NodeInfoLite) <= 200, "NodeInfoLite size increas static inline int get_max_num_nodes() { uint32_t psram_size = ESP.getPsramSize() / (1024 * 1024); // Convert Bytes to MB - if (psram_size >= 4) { + if (psram_size >= 2) { return 800; }