summaryrefslogtreecommitdiffstats
path: root/openxc.proto
diff options
context:
space:
mode:
authorChristopher Peplin <chris.peplin@rhubarbtech.com>2014-09-20 22:56:37 -0400
committerChristopher Peplin <chris.peplin@rhubarbtech.com>2014-09-20 22:56:37 -0400
commitef7c7dc0afab46f0e2e5eb8b051e769fb7a1a6b5 (patch)
treecf63e51b4c4fad01afcad08cc281303067aaa3a4 /openxc.proto
parentb2692a38bffa2c223f62b0aab5ce2c510fdefa30 (diff)
Simplify passthrough command to just a boolean.
Diffstat (limited to 'openxc.proto')
-rw-r--r--openxc.proto8
1 files changed, 1 insertions, 7 deletions
diff --git a/openxc.proto b/openxc.proto
index fd61b6c8..1be1df8a 100644
--- a/openxc.proto
+++ b/openxc.proto
@@ -42,14 +42,8 @@ message DiagnosticControlCommand {
}
message PassthroughModeControlCommand {
- enum PassthroughMode {
- OFF = 1;
- FILTERED = 2;
- UNFILTERED = 3;
- }
-
optional int32 bus = 1;
- optional PassthroughMode mode = 2;
+ optional bool enabled = 2;
}
message CommandResponse {