Merge pull request #303 from meshtastic/add-hwmodel

Add hardware model to metadata payload
pull/305/head
Ben Meadors 2023-02-02 13:14:21 -06:00 zatwierdzone przez GitHub
commit f46c98e623
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -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;
}