Skip to content

Commit

Permalink
Move to non-namespaced proto
Browse files Browse the repository at this point in the history
  • Loading branch information
thebentern committed Mar 25, 2024
1 parent 633ac9d commit ce908d8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
1 change: 0 additions & 1 deletion meshtastic/admin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
15 changes: 15 additions & 0 deletions meshtastic/mesh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
15 changes: 0 additions & 15 deletions meshtastic/remote_hardware.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit ce908d8

Please sign in to comment.