diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-09-20 22:56:37 -0400 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-09-20 22:56:37 -0400 |
commit | ef7c7dc0afab46f0e2e5eb8b051e769fb7a1a6b5 (patch) | |
tree | cf63e51b4c4fad01afcad08cc281303067aaa3a4 /openxc.proto | |
parent | b2692a38bffa2c223f62b0aab5ce2c510fdefa30 (diff) |
Simplify passthrough command to just a boolean.
Diffstat (limited to 'openxc.proto')
-rw-r--r-- | openxc.proto | 8 |
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 { |