From 3fd9ed0585602e65e7850115581495c4afd5c99a Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 7 Aug 2022 19:43:46 -0500 Subject: [PATCH] get_device_metadata_response --- admin.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/admin.proto b/admin.proto index 172ec3a..6996230 100644 --- a/admin.proto +++ b/admin.proto @@ -6,6 +6,7 @@ option go_package = "github.com/meshtastic/gomeshproto"; import "channel.proto"; import "config.proto"; +import "device_metadat.proto"; import "mesh.proto"; import "module_config.proto"; @@ -273,5 +274,10 @@ message AdminMessage { * Request the node to send device metadata (firmware, protobuf version, etc) */ uint32 get_device_metadata_request = 52; + + /* + * Device metadata response + */ + DeviceMetadata get_device_metadata_response = 53; } }