summaryrefslogtreecommitdiffstats
path: root/benchmark
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark')
-rwxr-xr-xbenchmark/proto/generate.sh2
-rw-r--r--benchmark/proto/openxc.proto35
2 files changed, 1 insertions, 36 deletions
diff --git a/benchmark/proto/generate.sh b/benchmark/proto/generate.sh
index 576b7b1..09400a3 100755
--- a/benchmark/proto/generate.sh
+++ b/benchmark/proto/generate.sh
@@ -1,3 +1,3 @@
#!/usr/bin/env bash
-protoc -I . --python_out=. openxc.proto
+protoc -I ../.. --python_out=. ../../openxc.proto
diff --git a/benchmark/proto/openxc.proto b/benchmark/proto/openxc.proto
deleted file mode 100644
index 1917b0b..0000000
--- a/benchmark/proto/openxc.proto
+++ /dev/null
@@ -1,35 +0,0 @@
-package openxc;
-
-message VehicleMessage {
- enum Type { RAW = 1; STRING = 2; NUM = 3; BOOL = 4; }
-
- optional Type type = 1;
-
- optional RawMessage raw_message = 2;
- optional TranslatedStringMessage string_message = 3;
- optional TranslatedNumericMessage numerical_message = 4;
- optional TranslatedBooleanMessage boolean_message = 5;
-}
-
-message RawMessage {
- optional uint32 message_id = 1;
- optional double data = 2;
-}
-
-message TranslatedStringMessage {
- optional string name = 1;
- optional string value = 2;
-}
-
-message TranslatedNumericMessage {
- optional string name = 1;
- optional double value = 2;
-}
-
-message TranslatedBooleanMessage {
- optional string name = 1;
- optional bool value = 2;
-}
-
-// TODO we should also consider having an enum type, h aving each specific
-// message defined as a protobuf