Skip to content

Commit

Permalink
fix: LV relay override signal
Browse files Browse the repository at this point in the history
  • Loading branch information
simoneruffini committed Aug 28, 2024
1 parent 598467e commit b8d14ec
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions SC24/MCB.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@
"IMU": 11,
"BRUSA": 12
},
"lvRlyOverrideState":{
"LV_RLY_OVERRIDE_OFF": 0,
"LV_RLY_OVERRIDE_OPEN" :1,
"LV_RLY_OVERRIDE_CLOSED": 2
},
"dspaceMainFsmStates_Enum": {
"IDLE": 0,
"PRECHARGE": 1,
Expand Down Expand Up @@ -1323,19 +1328,17 @@
"min": 0,
"max": 32768
},
"LV_RELAY_forcedState": {
"description": "The command to force the LV relay open (0) or closed (1)",
"LV_RELAY_overrideState": {
"description": "The override state to force the LV relay: no override (OFF/0), alwasy open (OPEN/1) or always closed (CLOSED/2)",
"start_bit": 15,
"size": 1,
"size": 2,
"endianness": "little",
"unit": "closed",
"receivers": [
"BMS_LV"
],
"scale": 1,
"offset": 0,
"enum_ref": "lvRlyOverrideState",
"min": 0,
"max": 1
"max": 2
}
}
},
Expand Down

0 comments on commit b8d14ec

Please sign in to comment.