From d171b2035f049e370a52f1160fdb33aac9a5716f Mon Sep 17 00:00:00 2001 From: Jason P Date: Sun, 14 Dec 2025 08:14:54 -0600 Subject: [PATCH] Add DFU notification as a simple pop-up --- src/modules/AdminModule.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/AdminModule.cpp b/src/modules/AdminModule.cpp index aa510a86d..61217a590 100644 --- a/src/modules/AdminModule.cpp +++ b/src/modules/AdminModule.cpp @@ -417,6 +417,7 @@ bool AdminModule::handleReceivedProtobuf(const meshtastic_MeshPacket &mp, meshta } case meshtastic_AdminMessage_enter_dfu_mode_request_tag: { LOG_INFO("Client requesting to enter DFU mode"); + screen->showSimpleBanner("Device is rebooting\ninto DFU mode.", 0); #if defined(ARCH_NRF52) || defined(ARCH_RP2040) enterDfuMode(); #endif