From 901ce4c1c42e04e6daa9fcf10db4965ea56550d3 Mon Sep 17 00:00:00 2001 From: mverch67 Date: Wed, 9 Oct 2024 22:52:55 +0200 Subject: [PATCH] renumbering getter/setter --- meshtastic/admin.proto | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/meshtastic/admin.proto b/meshtastic/admin.proto index 17009c4..f6d2014 100644 --- a/meshtastic/admin.proto +++ b/meshtastic/admin.proto @@ -335,6 +335,21 @@ message AdminMessage { */ fixed32 set_time_only = 43; + /* + * Tell the node to send the stored ui data. + */ + bool get_ui_config_request = 102; + + /* + * Reply stored device ui data. + */ + DeviceUIConfig get_ui_config_response = 103; + + /* + * Tell the node to store UI data persistently. + */ + DeviceUIConfig store_ui_config = 104; + /* * Begins an edit transaction for config, module config, owner, and channel settings changes * This will delay the standard *implicit* save to the file system and subsequent reboot behavior until committed (commit_edit_settings) @@ -382,21 +397,6 @@ message AdminMessage { * Tell the node to reset the nodedb. */ int32 nodedb_reset = 100; - - /* - * Tell the node to send the stored ui data. - */ - bool get_ui_config_request = 102; - - /* - * reply stored device ui data. - */ - DeviceUIConfig get_ui_config_response = 103; - - /* - * Tell the node to store UI data persistently. - */ - DeviceUIConfig store_ui_config = 104; } }