Move to non-namespaced proto

pull/473/head
Ben Meadors 2024-03-25 07:41:06 -05:00
rodzic 633ac9de71
commit ce908d8a45
3 zmienionych plików z 15 dodań i 16 usunięć

Wyświetl plik

@ -7,7 +7,6 @@ import "meshtastic/config.proto";
import "meshtastic/connection_status.proto";
import "meshtastic/mesh.proto";
import "meshtastic/module_config.proto";
import "meshtastic/remote_hardware.proto";
option csharp_namespace = "Meshtastic.Protobufs";
option go_package = "github.com/meshtastic/go/generated";

Wyświetl plik

@ -1581,3 +1581,18 @@ message DeviceMetadata {
message Heartbeat {
}
/*
* RemoteHardwarePins associated with a node
*/
message NodeRemoteHardwarePin {
/*
* The node_num exposing the available gpio pin
*/
uint32 node_num = 1;
/*
* The the available gpio pin for usage with RemoteHardware module
*/
RemoteHardwarePin pin = 2;
}

Wyświetl plik

@ -73,18 +73,3 @@ message HardwareMessage {
*/
uint64 gpio_value = 3;
}
/*
* RemoteHardwarePins associated with a node
*/
message NodeRemoteHardwarePin {
/*
* The node_num exposing the available gpio pin
*/
uint32 node_num = 1;
/*
* The the available gpio pin for usage with RemoteHardware module
*/
RemoteHardwarePin pin = 2;
}