HotFix for ReplyBot - Modules.cpp included and moved configuration.h (#9532)

This commit is contained in:
Jason P
2026-02-04 08:56:50 -06:00
committed by GitHub
parent 538a5f0dfc
commit bfc3eebd54
3 changed files with 9 additions and 3 deletions

View File

@@ -4,6 +4,9 @@
#include "modules/StatusLEDModule.h"
#include "modules/SystemCommandsModule.h"
#endif
#if !MESHTASTIC_EXCLUDE_REPLYBOT
#include "ReplyBotModule.h"
#endif
#if !MESHTASTIC_EXCLUDE_PKI
#include "KeyVerificationModule.h"
#endif
@@ -112,7 +115,9 @@ void setupModules()
#if defined(LED_CHARGE) || defined(LED_PAIRING)
statusLEDModule = new StatusLEDModule();
#endif
#if !MESHTASTIC_EXCLUDE_REPLYBOT
new ReplyBotModule();
#endif
#if !MESHTASTIC_EXCLUDE_ADMIN
adminModule = new AdminModule();
#endif