Merge pull request #473 from meshtastic/move-remote-hardware-pins

Move remote hardware pins to sever problematic device_only dependency
This commit is contained in:
Ben Meadors 2024-03-25 15:55:41 -05:00 committed by GitHub
commit dea3a82ef2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 16 deletions

View file

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

View file

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

View file

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