From da7b8ad669395a073ec8da289fac6f77b7ef78b2 Mon Sep 17 00:00:00 2001 From: ViezeVingertjes Date: Thu, 9 Oct 2025 20:30:25 +0200 Subject: [PATCH] Add powerOff support for MeshPocket --- variants/mesh_pocket/MeshPocket.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/variants/mesh_pocket/MeshPocket.h b/variants/mesh_pocket/MeshPocket.h index 82f66dd5..8f5b09c9 100644 --- a/variants/mesh_pocket/MeshPocket.h +++ b/variants/mesh_pocket/MeshPocket.h @@ -41,5 +41,9 @@ public: NVIC_SystemReset(); } + void powerOff() override { + sd_power_system_off(); + } + bool startOTAUpdate(const char* id, char reply[]) override; };