meshtastic-protobuf/meshtastic/remote_hardware.proto

78 wiersze
2.0 KiB
Protocol Buffer
Czysty Zwykły widok Historia

syntax = "proto3";
2023-01-17 11:03:10 +00:00
package meshtastic;
2020-12-07 11:49:43 +00:00
option java_package = "com.geeksville.mesh";
option java_outer_classname = "RemoteHardware";
2022-10-19 07:03:17 +00:00
option go_package = "github.com/meshtastic/go/generated";
2022-12-06 16:14:04 +00:00
option csharp_namespace = "Meshtastic.Protobufs";
2023-01-21 15:26:47 +00:00
option swift_prefix = "";
2020-12-07 11:49:43 +00:00
2021-03-07 08:28:48 +00:00
/*
* An example app to show off the module system. This message is used for
* REMOTE_HARDWARE_APP PortNums.
* Also provides easy remote access to any GPIO.
* In the future other remote hardware operations can be added based on user interest
* (i.e. serial output, spi/i2c input/output).
* FIXME - currently this feature is turned on by default which is dangerous
* because no security yet (beyond the channel mechanism).
* It should be off by default and then protected based on some TBD mechanism
* (a special channel once multichannel support is included?)
2021-01-29 02:11:10 +00:00
*/
message HardwareMessage {
2022-02-21 07:48:42 +00:00
/*
* TODO: REPLACE
*/
enum Type {
2021-01-29 02:11:10 +00:00
/*
* Unset/unused
*/
UNSET = 0;
/*
* Set gpio gpios based on gpio_mask/gpio_value
*/
WRITE_GPIOS = 1;
/*
* We are now interested in watching the gpio_mask gpios.
* If the selected gpios change, please broadcast GPIOS_CHANGED.
* Will implicitly change the gpios requested to be INPUT gpios.
*/
WATCH_GPIOS = 2;
2021-01-29 02:11:10 +00:00
/*
* The gpios listed in gpio_mask have changed, the new values are listed in gpio_value
2021-01-29 02:11:10 +00:00
*/
GPIOS_CHANGED = 3;
2021-01-29 02:11:10 +00:00
/*
* Read the gpios specified in gpio_mask, send back a READ_GPIOS_REPLY reply with gpio_value populated
2021-01-29 02:11:10 +00:00
*/
READ_GPIOS = 4;
2021-01-29 02:11:10 +00:00
/*
* A reply to READ_GPIOS. gpio_mask and gpio_value will be populated
2021-01-29 02:11:10 +00:00
*/
READ_GPIOS_REPLY = 5;
}
/*
* What type of HardwareMessage is this?
*/
Type type = 1;
/*
* What gpios are we changing. Not used for all MessageTypes, see MessageType for details
*/
uint64 gpio_mask = 2;
/*
* For gpios that were listed in gpio_mask as valid, what are the signal levels for those gpios.
* Not used for all MessageTypes, see MessageType for details
*/
uint64 gpio_value = 3;
}