From e570ee9836949d9f420fd19cc59a2595c8669a6e Mon Sep 17 00:00:00 2001 From: geeksville Date: Tue, 28 Apr 2020 17:34:06 -0700 Subject: [PATCH] add a FromRadio.rebooted packet so serial clients can tell if device reboots --- mesh.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mesh.proto b/mesh.proto index 72d926f..de9eb46 100644 --- a/mesh.proto +++ b/mesh.proto @@ -488,6 +488,11 @@ message FromRadio { /// recipient should check if this ID matches our original request nonce, if /// not, it means your config responses haven't started yet uint32 config_complete_id = 8; + + /// Sent to tell clients the radio has just rebooted. Set to true if + /// present. Not used on all transports, currently just used for the serial + /// console. + bool rebooted = 9; } }