Skip to content

Commit

Permalink
Merge pull request #473 from meshtastic/move-remote-hardware-pins
Browse files Browse the repository at this point in the history
Move remote hardware pins to sever problematic device_only dependency
  • Loading branch information
thebentern committed Mar 25, 2024
2 parents 95b0aa0 + 53e1c4f commit dea3a82
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 @@ -5,7 +5,6 @@ package meshtastic;
import "meshtastic/channel.proto";
import "meshtastic/config.proto";
import "meshtastic/connection_status.proto";
import "meshtastic/deviceonly.proto";
import "meshtastic/mesh.proto";
import "meshtastic/module_config.proto";

Expand Down
15 changes: 0 additions & 15 deletions meshtastic/deviceonly.proto
Original file line number Diff line number Diff line change
Expand Up @@ -254,18 +254,3 @@ message OEMStore {
*/
LocalModuleConfig oem_local_module_config = 8;
}

/*
* 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: 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;
}

0 comments on commit dea3a82

Please sign in to comment.