diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2013-10-05 16:25:51 -0400 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-01-07 13:18:10 -0500 |
commit | 341e0fbd06aac57ecdec5fd4802bb5175c939e1b (patch) | |
tree | be2516995e2390d092f73f7fa2165026cfc64347 /gen/cpp | |
parent | b68150231d6f1a2608e2d33187e05d5d3bf4a5f1 (diff) |
Switch raw data field to uint64 to fit all values and update benchmark.
Diffstat (limited to 'gen/cpp')
-rw-r--r-- | gen/cpp/openxc.pb | 2 | ||||
-rw-r--r-- | gen/cpp/openxc.pb.c | 4 | ||||
-rw-r--r-- | gen/cpp/openxc.pb.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/gen/cpp/openxc.pb b/gen/cpp/openxc.pb index 523fc767..27548ab6 100644 --- a/gen/cpp/openxc.pb +++ b/gen/cpp/openxc.pb @@ -14,7 +14,7 @@ RawMessage bus ( message_id (
-data (" +data (" TranslatedMessage name ( string_value ( diff --git a/gen/cpp/openxc.pb.c b/gen/cpp/openxc.pb.c index a49e1c07..5fb7d1cb 100644 --- a/gen/cpp/openxc.pb.c +++ b/gen/cpp/openxc.pb.c @@ -1,5 +1,5 @@ /* Automatically generated nanopb constant definitions */ -/* Generated by nanopb-0.2.4-dev at Fri Oct 4 19:24:10 2013. */ +/* Generated by nanopb-0.2.4-dev at Sat Oct 5 16:25:23 2013. */ #include "openxc.pb.h" @@ -15,7 +15,7 @@ const pb_field_t openxc_VehicleMessage_fields[4] = { const pb_field_t openxc_RawMessage_fields[4] = { PB_FIELD2( 1, INT32 , OPTIONAL, STATIC, FIRST, openxc_RawMessage, bus, bus, 0), PB_FIELD2( 2, UINT32 , OPTIONAL, STATIC, OTHER, openxc_RawMessage, message_id, bus, 0), - PB_FIELD2( 3, SINT64 , OPTIONAL, STATIC, OTHER, openxc_RawMessage, data, message_id, 0), + PB_FIELD2( 3, UINT64 , OPTIONAL, STATIC, OTHER, openxc_RawMessage, data, message_id, 0), PB_LAST_FIELD }; diff --git a/gen/cpp/openxc.pb.h b/gen/cpp/openxc.pb.h index 8528e654..f4ec09c5 100644 --- a/gen/cpp/openxc.pb.h +++ b/gen/cpp/openxc.pb.h @@ -1,5 +1,5 @@ /* Automatically generated nanopb header */ -/* Generated by nanopb-0.2.4-dev at Fri Oct 4 19:24:10 2013. */ +/* Generated by nanopb-0.2.4-dev at Sat Oct 5 16:25:23 2013. */ #ifndef _PB_OPENXC_PB_H_ #define _PB_OPENXC_PB_H_ @@ -22,7 +22,7 @@ typedef struct _openxc_RawMessage { bool has_message_id; uint32_t message_id; bool has_data; - int64_t data; + uint64_t data; } openxc_RawMessage; typedef struct _openxc_TranslatedMessage { |