mirror of
https://github.com/Colorado-Mesh/meshcore-bot-firmware.git
synced 2026-08-11 16:20:29 +00:00
- All self-advert paths (CMD_SEND_SELF_ADVERT, CMD_EXPORT_CONTACT, MyMesh::advert()) now use bot advert name with [MCBOT] suffix when bot_prefs.enabled, via new getAdvertNodeName() helper - Initial flood advert at 120s after boot instead of 24h, so other nodes see [MCBOT] in the contact name shortly after the bot boots - AUTO_ADD_OVERWRITE_OLDEST set by default on CMESH_BOT builds, so bots don't silently stop accepting contacts when the table fills Patches 0001-0005 re-exported (cosmetic series-count bump 1/5 -> 1/6).
23 lines
798 B
Diff
23 lines
798 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: cj-vana <cj@depth23.online>
|
|
Date: Fri, 15 May 2026 20:09:58 -0600
|
|
Subject: [PATCH 3/6] Allow prefixless firmware bot DMs
|
|
|
|
---
|
|
examples/companion_radio/BotPolicy.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/examples/companion_radio/BotPolicy.cpp b/examples/companion_radio/BotPolicy.cpp
|
|
index 33de45f8..7d0e6029 100644
|
|
--- a/examples/companion_radio/BotPolicy.cpp
|
|
+++ b/examples/companion_radio/BotPolicy.cpp
|
|
@@ -75,7 +75,7 @@ bool isEmergency(BotChannelKind kind) {
|
|
}
|
|
|
|
bool isPrefixlessCommandAllowed(BotChannelKind kind) {
|
|
- return kind == BOT_CHANNEL_BOT || kind == BOT_CHANNEL_TESTING;
|
|
+ return kind == BOT_CHANNEL_DM || kind == BOT_CHANNEL_BOT || kind == BOT_CHANNEL_TESTING;
|
|
}
|
|
|
|
}
|