summaryrefslogtreecommitdiffstats
path: root/openxc.proto
diff options
context:
space:
mode:
Diffstat (limited to 'openxc.proto')
-rw-r--r--openxc.proto7
1 files changed, 7 insertions, 0 deletions
diff --git a/openxc.proto b/openxc.proto
index 1be1df8a..c7f75913 100644
--- a/openxc.proto
+++ b/openxc.proto
@@ -27,11 +27,13 @@ message ControlCommand {
DEVICE_ID = 2;
DIAGNOSTIC = 3;
PASSTHROUGH = 4;
+ ACCEPTANCE_FILTER_BYPASS = 5;
}
optional Type type = 1;
optional DiagnosticControlCommand diagnostic_request = 2;
optional PassthroughModeControlCommand passthrough_mode_request = 3;
+ optional AcceptanceFilterBypassCommand acceptance_filter_bypass_command = 4;
}
message DiagnosticControlCommand {
@@ -46,6 +48,11 @@ message PassthroughModeControlCommand {
optional bool enabled = 2;
}
+message AcceptanceFilterBypassCommand {
+ optional int32 bus = 1;
+ optional bool bypass = 2;
+}
+
message CommandResponse {
optional ControlCommand.Type type = 1;
optional string message = 2;