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

Move remote hardware pins to sever problematic device_only dependency
pull/398/merge v2.3.3
Ben Meadors 2024-03-25 15:55:41 -05:00 zatwierdzone przez GitHub
commit dea3a82ef2
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
3 zmienionych plików z 15 dodań i 16 usunięć

Wyświetl plik

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

Wyświetl plik

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

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