diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-03-26 08:53:09 -0400 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-03-26 08:53:09 -0400 |
commit | 03a5af0f0978d372bb9e5668700ed39eb8c2fd83 (patch) | |
tree | 4b0d9835192c090723fddc16051e7896ac66c40b /openxc.proto | |
parent | f3f00874c637bcd700ded55f39cee5b1a881bc7c (diff) |
Remove parse_payload from diagnostic messages, it's not needed.
Diffstat (limited to 'openxc.proto')
-rw-r--r-- | openxc.proto | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/openxc.proto b/openxc.proto index 2deaf3bc..daccea2d 100644 --- a/openxc.proto +++ b/openxc.proto @@ -41,12 +41,11 @@ message DiagnosticRequest { // TODO we are capping this at 8 bytes for now - need to change when we // support multi-frame responses optional bytes payload = 5; - optional bool parse_payload = 6; - optional bool multiple_responses = 7; - optional double factor = 8; - optional double offset = 9; - optional double frequency = 10; - optional string name = 11; + optional bool multiple_responses = 6; + optional double factor = 7; + optional double offset = 8; + optional double frequency = 9; + optional string name = 10; } message DiagnosticResponse { |