From 8c4ec0ea8a03deb530bb55b9f4f77e492d40b842 Mon Sep 17 00:00:00 2001 From: Federico Carbone <43215754+federico-carbone@users.noreply.github.com> Date: Mon, 2 Sep 2024 13:00:32 +0200 Subject: [PATCH] fix: extended apps size from 10 to 16 bits --- SC24/MCB.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/SC24/MCB.json b/SC24/MCB.json index b5da3c7..38a519f 100644 --- a/SC24/MCB.json +++ b/SC24/MCB.json @@ -1962,7 +1962,7 @@ "APPS_0_voltage": { "description": "The voltage of the APPS #0 expressed in mV", "start_bit": 0, - "size": 10, + "size": 16, "endianness": "little", "unit": "mV", "receivers": [ @@ -1976,8 +1976,8 @@ }, "APPS_1_voltage": { "description": "The voltage of the APPS #1 expressed in mV", - "start_bit": 10, - "size": 10, + "start_bit": 16, + "size": 16, "endianness": "little", "unit": "mV", "receivers": [ @@ -1991,7 +1991,7 @@ }, "STEER_RME_voltage": { "description": "The voltage of the Steering Wheel RME (rotary magnetic encoder) sensor expressed in mV", - "start_bit": 20, + "start_bit": 32, "size": 16, "endianness": "little", "unit": "mV", @@ -2006,7 +2006,7 @@ }, "BRAKE_PRESS_FRONT_voltage": { "description": "The voltage of the front brake pressure sensor expressed in mV", - "start_bit": 36, + "start_bit": 48, "size": 16, "endianness": "little", "unit": "mV", @@ -4731,4 +4731,4 @@ } } } -} \ No newline at end of file +}