diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-25 20:00:05 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-27 01:03:34 +0200 |
commit | 3294f6fd9ad00d9412518b13b528ae14067cb3cf (patch) | |
tree | 2102d2ba1a6b8d22f2c8cf5dfff9b96636e74457 /CAN-binder/examples | |
parent | 14043c56960ced9141ef107c66a6a041a75f6cb3 (diff) |
Fix bit alignment errors...
Change-Id: Iea1bb66bb3aea8a120e7bbb3b55895682044cf23
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/examples')
-rw-r--r-- | CAN-binder/examples/toyota/signals.json | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/CAN-binder/examples/toyota/signals.json b/CAN-binder/examples/toyota/signals.json index e6260c1a..68c068a7 100644 --- a/CAN-binder/examples/toyota/signals.json +++ b/CAN-binder/examples/toyota/signals.json @@ -10,37 +10,37 @@ "signals": { "doors.driver.open": { "generic_name": "doors.driver.open", - "bit_position": 78, + "bit_position": 46, "bit_size": 1, - "factor": 0, + "factor": 1.0, "offset": 0, "decoder": "decoder_t::booleanDecoder"}, "doors.passenger.open": { "generic_name": "doors.passenger.open", - "bit_position": 79, + "bit_position": 47, "bit_size": 1, - "factor": 0, + "factor": 1.0, "offset": 0, "decoder": "decoder_t::booleanDecoder"}, "doors.rearleft.open": { "generic_name": "doors.rearleft.open", - "bit_position": 86, + "bit_position": 54, "bit_size": 1, - "factor": 0, + "factor": 1.0, "offset": 0, "decoder": "decoder_t::booleanDecoder"}, "doors.rearright.open": { "generic_name": "doors.rearright.open", - "bit_position": 85, + "bit_position": 53, "bit_size": 4, - "factor": 0, + "factor": 1.0, "offset": 0, "decoder": "decoder_t::booleanDecoder"}, "doors.coffer.open": { "generic_name": "doors.coffer.open", - "bit_position": 88, + "bit_position": 56, "bit_size": 1, - "factor": 0, + "factor": 1.0, "offset": 0, "decoder": "decoder_t::booleanDecoder"} } |