Add hardware model to metadata payload

This commit is contained in:
Ben Meadors 2023-02-02 10:49:03 -06:00
parent 2d21b9825e
commit 6c4c62427b

View file

@ -10,6 +10,7 @@ option csharp_namespace = "Meshtastic.Protobufs";
option swift_prefix = "";
import "meshtastic/config.proto";
import "meshtastic/mesh.proto";
/*
* Device metadata response
@ -54,4 +55,9 @@ message DeviceMetadata {
* Indicates the device's current enabled position flags
*/
uint32 position_flags = 8;
/*
* Device hardware model
*/
HardwareModel hw_model = 9;
}