From 3d5fe922a682a19fd954886a42c575135bc2d76b Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Thu, 25 Feb 2021 20:27:20 +0800 Subject: [PATCH] add get_radio/get_channel messages --- mesh.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/mesh.proto b/mesh.proto index 1d0e881..094da89 100644 --- a/mesh.proto +++ b/mesh.proto @@ -1363,5 +1363,15 @@ message AdminMessage { * Set channels (using the new API). A special channel is the "primary channel". The other records are secondary channels. * Note: only one channel can be marked as primary. If the client sets a particular channel to be primary, the previous channel will be set to SECONDARY automatically */ Channel set_channel = 3; + + /* + * Send the current RadioConfig in the response for this message + */ + bool get_radio = 4; + + /* + * Send the specified channel in the response for this message + */ + uint32 get_channel = 5; } } \ No newline at end of file