kopia lustrzana https://github.com/meshtastic/protobufs
Move to non-namespaced proto
rodzic
633ac9de71
commit
ce908d8a45
|
|
@ -7,7 +7,6 @@ import "meshtastic/config.proto";
|
||||||
import "meshtastic/connection_status.proto";
|
import "meshtastic/connection_status.proto";
|
||||||
import "meshtastic/mesh.proto";
|
import "meshtastic/mesh.proto";
|
||||||
import "meshtastic/module_config.proto";
|
import "meshtastic/module_config.proto";
|
||||||
import "meshtastic/remote_hardware.proto";
|
|
||||||
|
|
||||||
option csharp_namespace = "Meshtastic.Protobufs";
|
option csharp_namespace = "Meshtastic.Protobufs";
|
||||||
option go_package = "github.com/meshtastic/go/generated";
|
option go_package = "github.com/meshtastic/go/generated";
|
||||||
|
|
|
||||||
|
|
@ -1581,3 +1581,18 @@ message DeviceMetadata {
|
||||||
message Heartbeat {
|
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;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -73,18 +73,3 @@ message HardwareMessage {
|
||||||
*/
|
*/
|
||||||
uint64 gpio_value = 3;
|
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;
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Ładowanie…
Reference in New Issue