aboutsummaryrefslogtreecommitdiff
path: root/all_SRE_edited.h
blob: a6892930d27558a258d3a1c3b58fe092901e55f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
/** CAN message encoder/decoder: automatically generated - do not edit
  * Generated by dbcc: See https://github.com/howerj/dbcc */
#ifndef ALL_SRE_EDITED_H
#define ALL_SRE_EDITED_H

#include <stdint.h>
#include <stdio.h>

#ifdef __cplusplus
extern "C" { 
#endif

#ifndef PREPACK
#define PREPACK
#endif

#ifndef POSTPACK
#define POSTPACK
#endif

#ifndef DBCC_TIME_STAMP
#define DBCC_TIME_STAMP
typedef uint32_t dbcc_time_stamp_t; /* Time stamp for message; you decide on units */
#endif

#ifndef DBCC_STATUS_ENUM
#define DBCC_STATUS_ENUM
typedef enum {
	DBCC_SIG_STAT_UNINITIALIZED_E = 0, /* Message never sent/received */
	DBCC_SIG_STAT_OK_E            = 1, /* Message ok */
	DBCC_SIG_STAT_ERROR_E         = 2, /* Encode/Decode/Timestamp/Any error */
} dbcc_signal_status_e;
#endif

/* Motor Controller Temperatures Set 1 */
typedef PREPACK struct {
	int16_t MCM_Module_A_Temperature; /* scaling 0.1, offset 0.0, units C  */
	int16_t MCM_Module_B_Temperature; /* scaling 0.1, offset 0.0, units C  */
	int16_t MCM_Module_C_Temperature; /* scaling 0.1, offset 0.0, units C  */
	int16_t MCM_Gate_Driver_Board_Temp; /* scaling 0.1, offset 0.0, units C  */
} POSTPACK can_0x0a0_MCM_Temperature_Set_1_t;

/* Motor Controller Temperatures Set 2 */
typedef PREPACK struct {
	int16_t MCM_Control_Board_Temperature; /* scaling 0.1, offset 0.0, units C  */
	int16_t MCM_RTD1_Temperature; /* scaling 0.1, offset 0.0, units C  */
	int16_t MCM_RTD2_Temperature; /* scaling 0.1, offset 0.0, units C  */
	int16_t MCM_RTD3_Temperature; /* scaling 0.1, offset 0.0, units C  */
} POSTPACK can_0x0a1_MCM_Temperature_Set_2_t;

/* Motor Controller Temperatures Set 3 */
typedef PREPACK struct {
	int16_t MCM_RTD4_Temperature; /* scaling 0.1, offset 0.0, units C  */
	int16_t MCM_RTD5_Temperature; /* scaling 0.1, offset 0.0, units C  */
	int16_t MCM_Motor_Temperature; /* scaling 0.1, offset 0.0, units C  */
	int16_t MCM_Torque_Shudder; /* scaling 0.1, offset 0.0, units Nm  */
} POSTPACK can_0x0a2_MCM_Temperature_Set_3_t;

typedef PREPACK struct {
	int16_t MCM_Analog_Input_1; /* scaling 0.0, offset 0.0, units V  */
	int16_t MCM_Analog_Input_2; /* scaling 0.0, offset 0.0, units V  */
	int16_t MCM_Analog_Input_3; /* scaling 0.0, offset 0.0, units V  */
	int16_t MCM_Analog_Input_4; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x0a3_MCM_Analog_Input_Voltages_t;

typedef PREPACK struct {
	uint8_t MCM_Digital_Input_1; /* scaling 1.0, offset 0.0, units boolean  */
	uint8_t MCM_Digital_Input_2; /* scaling 1.0, offset 0.0, units boolean  */
	uint8_t MCM_Digital_Input_3; /* scaling 1.0, offset 0.0, units boolean  */
	uint8_t MCM_Digital_Input_4; /* scaling 1.0, offset 0.0, units boolean  */
	uint8_t MCM_Digital_Input_5; /* scaling 1.0, offset 0.0, units boolean  */
	uint8_t MCM_Digital_Input_6; /* scaling 1.0, offset 0.0, units boolean  */
	uint8_t MCM_Digital_Input_7; /* scaling 1.0, offset 0.0, units boolean  */
	uint8_t MCM_Digital_Input_8; /* scaling 1.0, offset 0.0, units boolean  */
} POSTPACK can_0x0a4_MCM_Digital_Input_Status_t;

/* Motor Position Information */
typedef PREPACK struct {
	uint16_t MCM_Motor_Angle; /* scaling 0.1, offset 0.0, units DEG  */
	int16_t MCM_Motor_Speed; /* scaling 1.0, offset 0.0, units RPM  */
	int16_t MCM_Electrical_Output_Freq; /* scaling 0.1, offset 0.0, units Hz  */
	int16_t MCM_Resolver_Angle; /* scaling 0.1, offset 0.0, units DEG  */
} POSTPACK can_0x0a5_MCM_Motor_Position_Info_t;

/* Motor Current Information */
typedef PREPACK struct {
	int16_t MCM_Phase_A_Current; /* scaling 0.1, offset 0.0, units A  */
	int16_t MCM_Phase_B_Current; /* scaling 0.1, offset 0.0, units A  */
	int16_t MCM_Phase_C_Current; /* scaling 0.1, offset 0.0, units A  */
	int16_t MCM_DC_Bus_Current; /* scaling 0.1, offset 0.0, units A  */
} POSTPACK can_0x0a6_MCM_Current_Info_t;

/* Motor Voltage Information */
typedef PREPACK struct {
	int16_t MCM_DC_Bus_Voltage; /* scaling 0.1, offset 0.0, units V  */
	int16_t MCM_Output_Voltage; /* scaling 0.1, offset 0.0, units V  */
	int16_t MCM_Phase_AB_Voltage; /* scaling 0.1, offset 0.0, units V  */
	int16_t MCM_Phase_BC_Voltage; /* scaling 0.1, offset 0.0, units V  */
} POSTPACK can_0x0a7_MCM_Voltage_Info_t;

typedef PREPACK struct {
	int16_t MCM_Flux_Command; /* scaling 0.0, offset 0.0, units Wb  */
	int16_t MCM_Flux_Feedback; /* scaling 0.0, offset 0.0, units Wb  */
	int16_t MCM_Id; /* scaling 0.1, offset 0.0, units A  */
	int16_t MCM_Iq; /* scaling 0.1, offset 0.0, units A  */
} POSTPACK can_0x0a8_MCM_Flux_ID_IQ_Info_t;

typedef PREPACK struct {
	int16_t MCM_Reference_Voltage_1_5; /* scaling 0.0, offset 0.0, units V  */
	int16_t MCM_Reference_Voltage_2_5; /* scaling 0.0, offset 0.0, units V  */
	int16_t MCM_Reference_Voltage_5_0; /* scaling 0.0, offset 0.0, units V  */
	int16_t MCM_Reference_Voltage_12_0; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x0a9_MCM_Internal_Voltages_t;

typedef PREPACK struct {
	uint16_t MCM_Int_VSM_State; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Inverter_State; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Direction_Command; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Invert_Dischrg_State; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Relay_1_Status; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Relay_2_Status; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Relay_3_Status; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Relay_4_Status; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Relay_5_Status; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Relay_6_Status; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Invert_Run_Mode; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Invert_Command_Mode; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Invert_Enable_State; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Int_Invert_En_Lockout; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x0aa_MCM_Internal_States_t;

typedef PREPACK struct {
	uint16_t MCM_Post_Fault_Lo; /* scaling 1.0, offset 0.0, units none  */
	uint16_t MCM_Post_Fault_Hi; /* scaling 1.0, offset 0.0, units none  */
	uint16_t MCM_Run_Fault_Lo; /* scaling 1.0, offset 0.0, units none  */
	uint16_t MCM_Run_Fault_Hi; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x0ab_MCM_Fault_Codes_t;

typedef PREPACK struct {
	uint32_t MCM_Power_On_Timer; /* scaling 0.0, offset 0.0, units Sec  */
	int16_t MCM_Commanded_Torque; /* scaling 0.1, offset 0.0, units Nm  */
	int16_t MCM_Torque_Feedback; /* scaling 0.1, offset 0.0, units Nm  */
} POSTPACK can_0x0ac_MCM_Torque_And_Timer_Info_t;

typedef PREPACK struct {
	int16_t MCM_Modulation_Index; /* scaling 0.0, offset 0.0, units none  */
	int16_t MCM_Flux_Weakening_Output; /* scaling 0.1, offset 0.0, units A  */
	int16_t MCM_Id_Command; /* scaling 0.1, offset 0.0, units A  */
	int16_t MCM_Iq_Command; /* scaling 0.1, offset 0.0, units A  */
} POSTPACK can_0x0ad_MCM_Modulation_And_Flux_Info_t;

typedef PREPACK struct {
	uint16_t MCM_Project_Code_EEP_Ver; /* scaling 1.0, offset 0.0, units none  */
	uint16_t MCM_SW_Version; /* scaling 1.0, offset 0.0, units none  */
	uint16_t MCM_DateCode_MMDD; /* scaling 1.0, offset 0.0, units none  */
	uint16_t MCM_DateCode_YYYY; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x0ae_MCM_Firmware_Info_t;

typedef PREPACK struct {
	int16_t MCM_Diag_Data_1; /* scaling 1.0, offset 0.0, units none  */
	int16_t MCM_Diag_Data_2; /* scaling 1.0, offset 0.0, units none  */
	int16_t MCM_Diag_Data_3; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Buffer_Record; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Buffer_Segment; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x0af_MCM_Diag_Data_t;

/* Motor Controller Command Messages */
typedef PREPACK struct {
	int16_t MCM_Torque_Command; /* scaling 0.1, offset 0.0, units Nm  */
	int16_t MCM_Speed_Command; /* scaling 1.0, offset 0.0, units rpm  */
	int16_t MCM_Torque_Limit_Command; /* scaling 0.1, offset 0.0, units Nm  */
	uint8_t MCM_RollingCounter; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Direction_Command; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Inverter_Enable; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Inverter_Discharge; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Speed_Mode_Enable; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x0c0_MCM_Command_Messages_t;

typedef PREPACK struct {
	uint16_t MCM_Param_Address_Command; /* scaling 1.0, offset 0.0, units none  */
	int16_t MCM_Data_Command; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Read_Write_Command; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x0c1_MCM_Read_Write_Param_Command_t;

typedef PREPACK struct {
	uint16_t MCM_Param_Address_Response; /* scaling 1.0, offset 0.0, units none  */
	int16_t MCM_Data_Response; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Write_Success; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x0c2_MCM_Read_Write_Param_Response_t;

typedef PREPACK struct {
	int32_t EMeter_Current; /* scaling 0.0, offset 0.0, units A  */
	int32_t EMeter_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x100_EMeter_Measurement_t;

typedef PREPACK struct {
	uint8_t MCM_HV_Input_Current; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_14V_Monitor; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_14V_Current_Monitor; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_DTC_Index; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_DTC_Status; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_HV_In_Curr_Sens_Valid; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_14V_Master_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_14V_Conditional; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x1d5_MCM_U2C_Message_Rxd_t;

typedef PREPACK struct {
	uint8_t MCM_ID_Byte; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Setpoint_Calc; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x1d7_MCM_U2C_Command_Txd_t;

typedef PREPACK struct {
	uint8_t EMeter_VoltageGain; /* scaling 1.0, offset 0.0, units bool  */
	uint8_t EMeter_CurrentGain; /* scaling 1.0, offset 0.0, units none  */
	uint8_t EMeter_OverVoltage; /* scaling 1.0, offset 0.0, units bool  */
	uint8_t EMeter_OverPower; /* scaling 1.0, offset 0.0, units bool  */
	uint8_t EMeter_Logging; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x400_EMeter_Status_t;

typedef PREPACK struct {
	uint16_t LF_Temperature_1; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_2; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_3; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_4; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4b0_DAQ_LF_Tire_Temp_Ch1_4_t;

typedef PREPACK struct {
	uint16_t LF_Temperature_5; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_6; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_7; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_8; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4b1_DAQ_LF_Tire_Temp_Ch5_8_t;

typedef PREPACK struct {
	uint16_t LF_Temperature_9; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_10; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_11; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_12; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4b2_DAQ_LF_Tire_Temp_Ch9_12_t;

typedef PREPACK struct {
	uint16_t LF_Temperature_13; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_14; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_15; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LF_Temperature_16; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4b3_DAQ_LF_Tire_Temp_Ch13_16_t;

typedef PREPACK struct {
	uint16_t RF_Temperature_1; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_2; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_3; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_4; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4b4_DAQ_RF_Tire_Temp_Ch1_4_t;

typedef PREPACK struct {
	uint16_t RF_Temperature_5; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_6; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_7; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_8; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4b5_DAQ_RF_Tire_Temp_Ch5_8_t;

typedef PREPACK struct {
	uint16_t RF_Temperature_9; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_10; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_11; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_12; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4b6_DAQ_RF_Tire_Temp_Ch9_12_t;

typedef PREPACK struct {
	uint16_t RF_Temperature_13; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_14; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_15; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RF_Temperature_16; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4b7_DAQ_RF_Tire_Temp_Ch13_16_t;

typedef PREPACK struct {
	uint16_t LR_Temperature_1; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_2; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_3; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_4; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4b8_DAQ_LR_Tire_Temp_Ch1_4_t;

typedef PREPACK struct {
	uint16_t LR_Temperature_5; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_6; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_7; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_8; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4b9_DAQ_LR_Tire_Temp_Ch5_8_t;

typedef PREPACK struct {
	uint16_t LR_Temperature_9; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_10; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_11; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_12; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4ba_DAQ_LR_Tire_Temp_Ch9_12_t;

typedef PREPACK struct {
	uint16_t LR_Temperature_13; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_14; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_15; /* scaling 0.0, offset -100.0, units C  */
	uint16_t LR_Temperature_16; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4bb_DAQ_LR_Tire_Temp_Ch13_16_t;

typedef PREPACK struct {
	uint16_t RR_Temperature_1; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_2; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_3; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_4; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4bc_DAQ_RR_Tire_Temp_Ch1_4_t;

typedef PREPACK struct {
	uint16_t RR_Temperature_5; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_6; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_7; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_8; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4bd_DAQ_RR_Tire_Temp_Ch5_8_t;

typedef PREPACK struct {
	uint16_t RR_Temperature_9; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_10; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_11; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_12; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4be_DAQ_RR_Tire_Temp_Ch9_12_t;

typedef PREPACK struct {
	uint16_t RR_Temperature_13; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_14; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_15; /* scaling 0.0, offset -100.0, units C  */
	uint16_t RR_Temperature_16; /* scaling 0.0, offset -100.0, units C  */
} POSTPACK can_0x4bf_DAQ_RR_Tire_Temp_Ch13_16_t;

/* Throttle Position Sensor 0 Value */
typedef PREPACK struct {
	uint16_t TPS0Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t TPS0CalibMin; /* scaling 0.0, offset 0.0, units V  */
	uint16_t TPS0CalibMax; /* scaling 0.0, offset 0.0, units V  */
	uint8_t TPS0ThrottlePercent0FF; /* scaling 0.4, offset 0.0, units %  */
	uint8_t TPS0Percent0FF; /* scaling 0.4, offset 0.0, units %  */
} POSTPACK can_0x500_VCU_TPS0_t;

/* Throttle Position Sensor 1 Value */
typedef PREPACK struct {
	uint16_t TPS1Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t TPS1CalibMin; /* scaling 0.0, offset 0.0, units V  */
	uint16_t TPS1CalibMax; /* scaling 0.0, offset 0.0, units V  */
	uint8_t ThrottlePercent0FF; /* scaling 1.0, offset 0.0, units none  */
	uint8_t TPS1Percent0FF; /* scaling 0.4, offset 0.0, units %  */
} POSTPACK can_0x501_VCU_TPS1_t;

/* Brake Pressure Sensor Value */
typedef PREPACK struct {
	uint16_t BPS0Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BPS0CalibMin; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BPS0CalibMax; /* scaling 0.0, offset 0.0, units V  */
	uint8_t BrakePercent0FF; /* scaling 0.4, offset 0.0, units %  */
} POSTPACK can_0x502_VCU_BPS0_t;

typedef PREPACK struct {
	uint16_t VCU_WSS_FL; /* scaling 1.0, offset 0.0, units RPM  */
	uint16_t VCU_WSS_FR; /* scaling 1.0, offset 0.0, units RPM  */
	uint16_t VCU_WSS_RL; /* scaling 1.0, offset 0.0, units RPM  */
	uint16_t VCU_WSS_RR; /* scaling 1.0, offset 0.0, units RPM  */
} POSTPACK can_0x504_VCU_WSS_t;

typedef PREPACK struct {
	uint16_t VCU_WSS_FL_S; /* scaling 1.0, offset 0.0, units RPM  */
	uint16_t VCU_WSS_FR_S; /* scaling 1.0, offset 0.0, units RPM  */
	uint16_t VCU_WSS_RL_S; /* scaling 1.0, offset 0.0, units RPM  */
	uint16_t VCU_WSS_RR_S; /* scaling 1.0, offset 0.0, units RPM  */
} POSTPACK can_0x505_VCU_WSS_Smooth_t;

/* VCU Safety Messages */
typedef PREPACK struct {
	uint8_t VCU_FAULT_TPS_OutOfRange; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_FAULT_BPS_OutOfRange; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_FAULT_TPS_PowerFailure; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_FAULT_BPS_PowerFailure; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_FAULT_TPS_SignalFailure; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_FAULT_BPS_SignalFailure; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_FAULT_TPS_NotCalibrated; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_FAULT_BPS_NotCalibrated; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_FAULT_TPS_OutOfSync; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_FAULT_TPSBPS_Implausible; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_FAULT_BSPD_SoftFault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_FAULT_LVS_BatteryEmpty; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_WARNING_LVS_BatteryLow; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_WARNING_HVIL_OverrideEn; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_WARNING_SAFETY_BypassEn; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_NOTICE_HVIL_TermSenseLost; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_NOTICE_BMS_Over75kW; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_NOTICE_MCM_Over75kW; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x506_VCU_Safety_Checker_t;

typedef PREPACK struct {
	uint16_t Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x507_Low_Voltage_t;

typedef PREPACK struct {
	uint8_t VCU_MCM_RegenMode; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_MCM_MaxTorqueNm; /* scaling 1.0, offset 0.0, units Nm  */
	uint8_t VCU_MCM_RegenTorqueLimitNm; /* scaling 1.0, offset 0.0, units Nm  */
	uint8_t VCU_MCM_RegenTorqueZeroPedal; /* scaling 1.0, offset 0.0, units Nm  */
	uint8_t VCU_MCM_RegenAPPSMaxCoasting; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_MCM_RegenBPSMaxRegen; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x508_VCU_Regen_Settings_t;

typedef PREPACK struct {
	uint16_t HVIL_Active; /* scaling 1.0, offset 0.0, units none  */
	uint8_t MCM_Override_Enabled; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x509_MCM_RTD_HVIL_t;

typedef PREPACK struct {
	uint16_t speedKph; /* scaling 1.0, offset 0.0, units km/h  */
} POSTPACK can_0x50a_Ground_Speed_t;

typedef PREPACK struct {
	uint16_t TargetSlipRatio; /* scaling 0.0, offset 0.0, units Slip Ratio  */
	uint16_t Reserved_Debug_1; /* scaling 1.0, offset 0.0, units Debug Channel 1  */
	uint16_t Reserved_Debug_2; /* scaling 1.0, offset 0.0, units Debug Channel 2  */
	uint8_t Reserved_Debug_3; /* scaling 1.0, offset 0.0, units Debug Channel 3  */
	uint8_t Reserved_Debug_4; /* scaling 1.0, offset 0.0, units Debug Channel 4  */
} POSTPACK can_0x50c_Launch_Control_Additional_Information_t;

typedef PREPACK struct {
	uint16_t BPS1Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x50d_VCU_BPS1_t;

typedef PREPACK struct {
	uint16_t VCU_BMS_HighestCellTemp; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_BMS_FaultFlags0; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_BMS_FaultFlags1; /* scaling 1.0, offset 0.0, units none  */
	uint8_t VCU_BMS_ShutdownRelayState; /* scaling 1.0, offset 0.0, units none  */
	int8_t VCU_BMS_GetPower; /* scaling 1.0, offset 0.0, units kW  */
	int8_t VCU_BMS_GetCurrent; /* scaling 1.0, offset 0.0, units A  */
} POSTPACK can_0x50e_VCU_BMS_Debug_1_t;

typedef PREPACK struct {
	uint16_t VCU_BMS_HighestCellVoltage; /* scaling 1.0, offset 0.0, units V  */
	uint16_t VCU_BMS_LowestCellVoltage; /* scaling 1.0, offset 0.0, units V  */
	int16_t VCU_BMS_HighestCellTemp_dC; /* scaling 1.0, offset 0.0, units C  */
} POSTPACK can_0x50f_VCU_BMS_Debug_2_t;

typedef PREPACK struct {
	uint32_t VCU_MCM_Power; /* scaling 1.0, offset 0.0, units W  */
	uint32_t VCU_Safety_Checker_Notices; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x510_VCU_80kW_Debug_t;

typedef PREPACK struct {
	int16_t PL_Torque_Command; /* scaling 0.1, offset 0.0, units Nm  */
	int16_t PL_PID_Output; /* scaling 1.0, offset 0.0, units Nm  */
	uint8_t PL_Status; /* scaling 1.0, offset 0.0, units none  */
	uint8_t PL_Mode; /* scaling 1.0, offset 0.0, units Gain Values  */
	uint8_t PL_Target_Power; /* scaling 1.0, offset 0.0, units kW  */
	uint8_t PL_Initialisation_Threshold; /* scaling 1.0, offset 0.0, units kW  */
} POSTPACK can_0x511_VCU_Power_Limit_Overview_t;

typedef PREPACK struct {
	int16_t PL_PID_Proportional; /* scaling 1.0, offset 0.0, units none  */
	int16_t PL_PID_Integral; /* scaling 1.0, offset 0.0, units none  */
	int16_t PL_PID_Derivative; /* scaling 1.0, offset 0.0, units none  */
	uint8_t PL_PID_AntiWindupEnabled; /* scaling 1.0, offset 0.0, units Anti-Windup Flag  */
	uint8_t PL_PL_Mode; /* scaling 1.0, offset 0.0, units Power Limit Mode  */
	uint8_t PL_PL_Status; /* scaling 1.0, offset 0.0, units Power Limit Enabled Flag  */
	uint8_t PL_PID_AntiWindupEnabled2; /* scaling 1.0, offset 0.0, units Anti-Windup Flag  */
} POSTPACK can_0x512_VCU_Power_Limit_PID_Output_Details_t;

typedef PREPACK struct {
	uint16_t Velocity_Floor_RPM_Floor; /* scaling 1.0, offset 0.0, units Nm  */
	uint16_t Velocity_Floor_RPM_Ceiling; /* scaling 1.0, offset 0.0, units Nm  */
	uint16_t Velocity_Ceiling_RPM_Floor; /* scaling 1.0, offset 0.0, units Nm  */
	uint16_t Velocity_Ceiling_RPM_Ceiling; /* scaling 1.0, offset 0.0, units Nm  */
} POSTPACK can_0x513_VCU_Power_Limit_LUT_Parameters_t;

typedef PREPACK struct {
	int32_t PL_PID_TotalError; /* scaling 1.0, offset 0.0, units PID Error  */
	int16_t PL_PID_Setpoint; /* scaling 1.0, offset 0.0, units Nm  */
	uint8_t PL_PID_Kp; /* scaling 0.1, offset 0.0, units Gain Values  */
	uint8_t PL_PID_Ki; /* scaling 0.1, offset 0.0, units Gain Values  */
} POSTPACK can_0x514_VCU_Power_Limit_PID_Information_t;

typedef PREPACK struct {
	int16_t Steering_Angle; /* scaling 1.0, offset 0.0, units Degrees  */
	uint8_t DRS_Enable; /* scaling 1.0, offset 0.0, units Enable  */
	uint8_t DRS_Mode; /* scaling 1.0, offset 0.0, units Selection  */
	uint8_t flap_DRS; /* scaling 1.0, offset 0.0, units State  */
} POSTPACK can_0x515_DRS_SAS_t;

typedef PREPACK struct {
	uint8_t HVIL_Enable; /* scaling 1.0, offset 0.0, units bool  */
	uint8_t Inverter_Enable; /* scaling 1.0, offset 0.0, units bool  */
} POSTPACK can_0x5ff_Enable_Inverter_t;

typedef PREPACK struct {
	uint8_t BMS_State_Request; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Relay_Driver_1_Command; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Relay_Driver_2_Command; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Relay_Driver_3_Command; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Relay_Driver_4_Command; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Relay_Driver_5_Command; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Relay_Driver_6_Command; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x600_BMS_State_Command_t;

typedef PREPACK struct {
	uint8_t BMS_Isolation_Leakage_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Monitor_Communication_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Precharge_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Pack_Discharge_Envelope_Exceeded_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Pack_Charge_Envelope_Exceeded_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Failed_Thermistor_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Cell_Over_Voltage_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Cell_Under_Voltage_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Cell_Over_Temperature_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Cell_Under_Temperature_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Pack_Over_Voltage_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Pack_Under_Voltage_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Over_Current_Discharge_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Over_Current_Charge_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Imminent_Contactor_Opening_Warning; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x602_BMS_Master_Faults_t;

typedef PREPACK struct {
	uint8_t BMS_Cell_Under_Voltage_Warning; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Cell_Over_TemperatureWarning; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Cell_Under_Temperature_Warning; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Cell_Under_Temperature_Fault; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Pack_Over_Voltage_Warning; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Pack_Under_Voltage_Warning; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Over_Current_Discharge_Warning; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Over_Current_Charge_Warning; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Cell_Over_Voltage_Warning; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x604_BMS_Master_Warnings_t;

typedef PREPACK struct {
	uint8_t BMS_Number_Of_Failed_Thermistors; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Number_Monitors_Detected; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Current_State; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Monitor_Power_Active; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Cell_Balancing_Active; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Precharge_Relay_Closed; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Main_Contactor_Positive_Closed; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Main_Contactor_Negative_Closed; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_HVIL_Present; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Incorrect_Number_Monitor_Boards; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Incompatible_Monitor_Firmware; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Loss_Of_All_Monitor_Communication; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Monitor_Address_Conflict; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Unexpected_Monitor_Address; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x610_BMS_Master_System_Status_t;

typedef PREPACK struct {
	uint16_t BMS_Maximum_Charge_Current_Allowed; /* scaling 0.1, offset 0.0, units A  */
	uint16_t BMS_Maximum_Discharge_Current_Allowed; /* scaling 0.1, offset 0.0, units A  */
	uint16_t BMS_Charger_Constant_Voltage_Setpoint; /* scaling 0.1, offset 0.0, units V  */
} POSTPACK can_0x611_BMS_Pack_Safe_OE_t;

typedef PREPACK struct {
	uint16_t BMS_Internal_5V_Rail_Sense; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_HVIL_Power_Input_Sense; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Power_Input_Sense; /* scaling 0.0, offset 0.0, units V  */
	int16_t BMS_Master_Board_Temperature; /* scaling 0.1, offset 0.0, units DegC  */
} POSTPACK can_0x612_BMS_Master_Local_Board_Measurements_t;

/* BMS Status and Fault Message */
typedef PREPACK struct {
	int32_t BMS_Pack_Current; /* scaling 0.0, offset 0.0, units A  */
	uint32_t BMS_Pack_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x620_BMS_Pack_Level_Measurements_1_t;

typedef PREPACK struct {
	uint16_t BMS_Amp_Hours_Remaining; /* scaling 0.1, offset 0.0, units Ah  */
	uint16_t BMS_State_Of_Health; /* scaling 0.1, offset 0.0, units %  */
	uint16_t BMS_State_Of_Charge; /* scaling 0.1, offset 0.0, units %  */
} POSTPACK can_0x621_BMS_Pack_Level_Measurements_2_t;

typedef PREPACK struct {
	uint16_t BMS_Lowest_Cell_Voltage_Position; /* scaling 1.0, offset 0.0, units none  */
	uint16_t BMS_Highest_Cell_Voltage_Position; /* scaling 1.0, offset 0.0, units none  */
	uint16_t BMS_Lowest_Cell_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Highest_Cell_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x622_BMS_Cell_Voltage_Summary_t;

typedef PREPACK struct {
	uint16_t BMS_Lowest_Cell_Temperature_Position; /* scaling 1.0, offset 0.0, units none  */
	uint16_t BMS_Highest_Cell_Temperature_Position; /* scaling 1.0, offset 0.0, units none  */
	int16_t BMS_Lowest_Cell_Temperature; /* scaling 0.1, offset 0.0, units DegC  */
	int16_t BMS_Highest_Cell_Temperature; /* scaling 0.1, offset 0.0, units DegC  */
} POSTPACK can_0x623_BMS_Cell_Temperature_Summary_t;

typedef PREPACK struct {
	uint32_t BMS_Precharge_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint32_t BMS_Sum_Of_Cells_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x624_BMS_Pack_Level_Measurements_3_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_4_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_3_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_2_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_1_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x630_BMS_M1_Cell_Voltage_Data_1_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_8_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_7_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_6_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_5_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x631_BMS_M1_Cell_Voltage_Data_2_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_12_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_11_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_10_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_9_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x632_BMS_M1_Cell_Voltage_Data_3_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_4_Voltage; /* scaling 0.0, offset 0.0, units C  */
	uint16_t BMS_Cell_3_Voltage; /* scaling 0.0, offset 0.0, units C  */
	uint16_t BMS_Cell_2_Voltage; /* scaling 0.0, offset 0.0, units C  */
	uint16_t BMS_Cell_1_Voltage; /* scaling 0.0, offset 0.0, units C  */
} POSTPACK can_0x633_BMS_M2_Cell_Voltage_Data_1_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_8_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_7_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_6_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_5_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x634_BMS_M2_Cell_Voltage_Data_2_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_12_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_11_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_10_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_9_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x635_BMS_M2_Cell_Voltage_Data_3_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_4_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_3_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_2_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_1_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x636_BMS_M3_Cell_Voltage_Data_1_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_8_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_7_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_6_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_5_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x637_BMS_M3_Cell_Voltage_Data_2_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_12_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_11_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_10_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_9_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x638_BMS_M3_Cell_Voltage_Data_3_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_4_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_3_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_2_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_1_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x639_BMS_M4_Cell_Voltage_Data_1_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_8_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_7_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_6_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_5_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x63a_BMS_M4_Cell_Voltage_Data_2_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_12_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_11_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_10_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_9_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x63b_BMS_M4_Cell_Voltage_Data_3_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_4_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_3_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_2_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_1_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x63c_BMS_M5_Cell_Voltage_Data_1_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_8_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_7_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_6_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_5_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x63d_BMS_M5_Cell_Voltage_Data_2_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_12_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_11_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_10_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_9_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x63e_BMS_M5_Cell_Voltage_Data_3_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_4_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_3_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_2_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_1_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x63f_BMS_M6_Cell_Voltage_Data_1_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_8_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_7_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_6_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_5_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x640_BMS_M6_Cell_Voltage_Data_2_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_12_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_11_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_10_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_9_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x641_BMS_M6_Cell_Voltage_Data_3_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_4_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_3_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_2_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_1_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x642_BMS_M7_Cell_Voltage_Data_1_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_8_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_7_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_6_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_5_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x643_BMS_M7_Cell_Voltage_Data_2_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_12_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_11_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_10_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_9_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x644_BMS_M7_Cell_Voltage_Data_3_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_4_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_3_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_2_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_1_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x645_BMS_M8_Cell_Voltage_Data_1_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_8_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_7_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_6_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_5_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x646_BMS_M8_Cell_Voltage_Data_2_t;

typedef PREPACK struct {
	uint16_t BMS_Cell_12_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_11_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_10_Voltage; /* scaling 0.0, offset 0.0, units V  */
	uint16_t BMS_Cell_9_Voltage; /* scaling 0.0, offset 0.0, units V  */
} POSTPACK can_0x647_BMS_M8_Cell_Voltage_Data_3_t;

typedef PREPACK struct {
	int16_t BMS_Section_4_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_3_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_2_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_1_Temp; /* scaling 0.1, offset 0.0, units C  */
} POSTPACK can_0x680_BMS_M1_Cell_Temp_Data_t;

typedef PREPACK struct {
	int16_t BMS_Section_4_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_3_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_2_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_1_Temp; /* scaling 0.1, offset 0.0, units C  */
} POSTPACK can_0x683_BMS_M2_Cell_Temp_Data_t;

typedef PREPACK struct {
	int16_t BMS_Section_4_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_3_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_2_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_1_Temp; /* scaling 0.1, offset 0.0, units C  */
} POSTPACK can_0x686_BMS_M3_Cell_Temp_Data_t;

typedef PREPACK struct {
	int16_t BMS_Section_4_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_3_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_2_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_1_Temp; /* scaling 0.1, offset 0.0, units C  */
} POSTPACK can_0x689_BMS_M4_Cell_Temp_Data_t;

typedef PREPACK struct {
	int16_t BMS_Section_4_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_3_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_2_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_1_Temp; /* scaling 0.1, offset 0.0, units C  */
} POSTPACK can_0x68c_BMS_M5_Cell_Temp_Data_t;

typedef PREPACK struct {
	int16_t BMS_Section_4_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_3_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_2_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_1_Temp; /* scaling 0.1, offset 0.0, units C  */
} POSTPACK can_0x68f_BMS_M6_Cell_Temp_Data_t;

typedef PREPACK struct {
	int16_t BMS_Section_4_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_3_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_2_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_1_Temp; /* scaling 0.1, offset 0.0, units C  */
} POSTPACK can_0x692_BMS_M7_Cell_Temp_Data_t;

typedef PREPACK struct {
	int16_t BMS_Section_4_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_3_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_2_Temp; /* scaling 0.1, offset 0.0, units C  */
	int16_t BMS_Section_1_Temp; /* scaling 0.1, offset 0.0, units C  */
} POSTPACK can_0x695_BMS_M8_Cell_Temp_Data_t;

typedef PREPACK struct {
	uint16_t BMS_Number_Of_Thermistors_Configured; /* scaling 1.0, offset 0.0, units none  */
	uint16_t BMS_Number_Of_Cells_Configured; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x6fc_BMS_Configuration_Information_t;

typedef PREPACK struct {
	uint8_t BMS_Revision_Number; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Minor_Version_Number; /* scaling 1.0, offset 0.0, units none  */
	uint8_t BMS_Major_Version_Number; /* scaling 1.0, offset 0.0, units none  */
} POSTPACK can_0x6fe_BMS_Firmware_Version_Information_t;

typedef PREPACK struct {
	uint8_t RegenMode; /* scaling 1.0, offset 0.0, units Regen mode  */
} POSTPACK can_0x702_MCM_RegenModeICSent_t;

typedef PREPACK struct {
	int16_t Wind_Speed; /* scaling 0.1, offset 0.0, units hPa  */
	int16_t Pitot_Tube1; /* scaling 0.1, offset 0.0, units hPa  */
	int16_t Pitot_Tube2; /* scaling 0.1, offset 0.0, units hPa  */
} POSTPACK can_0x710_S2C_PressureTabs_t;

typedef PREPACK struct {
	dbcc_time_stamp_t can_0x0a0_MCM_Temperature_Set_1_time_stamp_rx;
	dbcc_time_stamp_t can_0x0a1_MCM_Temperature_Set_2_time_stamp_rx;
	dbcc_time_stamp_t can_0x0a2_MCM_Temperature_Set_3_time_stamp_rx;
	dbcc_time_stamp_t can_0x0a3_MCM_Analog_Input_Voltages_time_stamp_rx;
	dbcc_time_stamp_t can_0x0a4_MCM_Digital_Input_Status_time_stamp_rx;
	dbcc_time_stamp_t can_0x0a5_MCM_Motor_Position_Info_time_stamp_rx;
	dbcc_time_stamp_t can_0x0a6_MCM_Current_Info_time_stamp_rx;
	dbcc_time_stamp_t can_0x0a7_MCM_Voltage_Info_time_stamp_rx;
	dbcc_time_stamp_t can_0x0a8_MCM_Flux_ID_IQ_Info_time_stamp_rx;
	dbcc_time_stamp_t can_0x0a9_MCM_Internal_Voltages_time_stamp_rx;
	dbcc_time_stamp_t can_0x0aa_MCM_Internal_States_time_stamp_rx;
	dbcc_time_stamp_t can_0x0ab_MCM_Fault_Codes_time_stamp_rx;
	dbcc_time_stamp_t can_0x0ac_MCM_Torque_And_Timer_Info_time_stamp_rx;
	dbcc_time_stamp_t can_0x0ad_MCM_Modulation_And_Flux_Info_time_stamp_rx;
	dbcc_time_stamp_t can_0x0ae_MCM_Firmware_Info_time_stamp_rx;
	dbcc_time_stamp_t can_0x0af_MCM_Diag_Data_time_stamp_rx;
	dbcc_time_stamp_t can_0x0c0_MCM_Command_Messages_time_stamp_rx;
	dbcc_time_stamp_t can_0x0c1_MCM_Read_Write_Param_Command_time_stamp_rx;
	dbcc_time_stamp_t can_0x0c2_MCM_Read_Write_Param_Response_time_stamp_rx;
	dbcc_time_stamp_t can_0x100_EMeter_Measurement_time_stamp_rx;
	dbcc_time_stamp_t can_0x1d5_MCM_U2C_Message_Rxd_time_stamp_rx;
	dbcc_time_stamp_t can_0x1d7_MCM_U2C_Command_Txd_time_stamp_rx;
	dbcc_time_stamp_t can_0x400_EMeter_Status_time_stamp_rx;
	dbcc_time_stamp_t can_0x4b0_DAQ_LF_Tire_Temp_Ch1_4_time_stamp_rx;
	dbcc_time_stamp_t can_0x4b1_DAQ_LF_Tire_Temp_Ch5_8_time_stamp_rx;
	dbcc_time_stamp_t can_0x4b2_DAQ_LF_Tire_Temp_Ch9_12_time_stamp_rx;
	dbcc_time_stamp_t can_0x4b3_DAQ_LF_Tire_Temp_Ch13_16_time_stamp_rx;
	dbcc_time_stamp_t can_0x4b4_DAQ_RF_Tire_Temp_Ch1_4_time_stamp_rx;
	dbcc_time_stamp_t can_0x4b5_DAQ_RF_Tire_Temp_Ch5_8_time_stamp_rx;
	dbcc_time_stamp_t can_0x4b6_DAQ_RF_Tire_Temp_Ch9_12_time_stamp_rx;
	dbcc_time_stamp_t can_0x4b7_DAQ_RF_Tire_Temp_Ch13_16_time_stamp_rx;
	dbcc_time_stamp_t can_0x4b8_DAQ_LR_Tire_Temp_Ch1_4_time_stamp_rx;
	dbcc_time_stamp_t can_0x4b9_DAQ_LR_Tire_Temp_Ch5_8_time_stamp_rx;
	dbcc_time_stamp_t can_0x4ba_DAQ_LR_Tire_Temp_Ch9_12_time_stamp_rx;
	dbcc_time_stamp_t can_0x4bb_DAQ_LR_Tire_Temp_Ch13_16_time_stamp_rx;
	dbcc_time_stamp_t can_0x4bc_DAQ_RR_Tire_Temp_Ch1_4_time_stamp_rx;
	dbcc_time_stamp_t can_0x4bd_DAQ_RR_Tire_Temp_Ch5_8_time_stamp_rx;
	dbcc_time_stamp_t can_0x4be_DAQ_RR_Tire_Temp_Ch9_12_time_stamp_rx;
	dbcc_time_stamp_t can_0x4bf_DAQ_RR_Tire_Temp_Ch13_16_time_stamp_rx;
	dbcc_time_stamp_t can_0x500_VCU_TPS0_time_stamp_rx;
	dbcc_time_stamp_t can_0x501_VCU_TPS1_time_stamp_rx;
	dbcc_time_stamp_t can_0x502_VCU_BPS0_time_stamp_rx;
	dbcc_time_stamp_t can_0x504_VCU_WSS_time_stamp_rx;
	dbcc_time_stamp_t can_0x505_VCU_WSS_Smooth_time_stamp_rx;
	dbcc_time_stamp_t can_0x506_VCU_Safety_Checker_time_stamp_rx;
	dbcc_time_stamp_t can_0x507_Low_Voltage_time_stamp_rx;
	dbcc_time_stamp_t can_0x508_VCU_Regen_Settings_time_stamp_rx;
	dbcc_time_stamp_t can_0x509_MCM_RTD_HVIL_time_stamp_rx;
	dbcc_time_stamp_t can_0x50a_Ground_Speed_time_stamp_rx;
	dbcc_time_stamp_t can_0x50c_Launch_Control_Additional_Information_time_stamp_rx;
	dbcc_time_stamp_t can_0x50d_VCU_BPS1_time_stamp_rx;
	dbcc_time_stamp_t can_0x50e_VCU_BMS_Debug_1_time_stamp_rx;
	dbcc_time_stamp_t can_0x50f_VCU_BMS_Debug_2_time_stamp_rx;
	dbcc_time_stamp_t can_0x510_VCU_80kW_Debug_time_stamp_rx;
	dbcc_time_stamp_t can_0x511_VCU_Power_Limit_Overview_time_stamp_rx;
	dbcc_time_stamp_t can_0x512_VCU_Power_Limit_PID_Output_Details_time_stamp_rx;
	dbcc_time_stamp_t can_0x513_VCU_Power_Limit_LUT_Parameters_time_stamp_rx;
	dbcc_time_stamp_t can_0x514_VCU_Power_Limit_PID_Information_time_stamp_rx;
	dbcc_time_stamp_t can_0x515_DRS_SAS_time_stamp_rx;
	dbcc_time_stamp_t can_0x5ff_Enable_Inverter_time_stamp_rx;
	dbcc_time_stamp_t can_0x600_BMS_State_Command_time_stamp_rx;
	dbcc_time_stamp_t can_0x602_BMS_Master_Faults_time_stamp_rx;
	dbcc_time_stamp_t can_0x604_BMS_Master_Warnings_time_stamp_rx;
	dbcc_time_stamp_t can_0x610_BMS_Master_System_Status_time_stamp_rx;
	dbcc_time_stamp_t can_0x611_BMS_Pack_Safe_OE_time_stamp_rx;
	dbcc_time_stamp_t can_0x612_BMS_Master_Local_Board_Measurements_time_stamp_rx;
	dbcc_time_stamp_t can_0x620_BMS_Pack_Level_Measurements_1_time_stamp_rx;
	dbcc_time_stamp_t can_0x621_BMS_Pack_Level_Measurements_2_time_stamp_rx;
	dbcc_time_stamp_t can_0x622_BMS_Cell_Voltage_Summary_time_stamp_rx;
	dbcc_time_stamp_t can_0x623_BMS_Cell_Temperature_Summary_time_stamp_rx;
	dbcc_time_stamp_t can_0x624_BMS_Pack_Level_Measurements_3_time_stamp_rx;
	dbcc_time_stamp_t can_0x630_BMS_M1_Cell_Voltage_Data_1_time_stamp_rx;
	dbcc_time_stamp_t can_0x631_BMS_M1_Cell_Voltage_Data_2_time_stamp_rx;
	dbcc_time_stamp_t can_0x632_BMS_M1_Cell_Voltage_Data_3_time_stamp_rx;
	dbcc_time_stamp_t can_0x633_BMS_M2_Cell_Voltage_Data_1_time_stamp_rx;
	dbcc_time_stamp_t can_0x634_BMS_M2_Cell_Voltage_Data_2_time_stamp_rx;
	dbcc_time_stamp_t can_0x635_BMS_M2_Cell_Voltage_Data_3_time_stamp_rx;
	dbcc_time_stamp_t can_0x636_BMS_M3_Cell_Voltage_Data_1_time_stamp_rx;
	dbcc_time_stamp_t can_0x637_BMS_M3_Cell_Voltage_Data_2_time_stamp_rx;
	dbcc_time_stamp_t can_0x638_BMS_M3_Cell_Voltage_Data_3_time_stamp_rx;
	dbcc_time_stamp_t can_0x639_BMS_M4_Cell_Voltage_Data_1_time_stamp_rx;
	dbcc_time_stamp_t can_0x63a_BMS_M4_Cell_Voltage_Data_2_time_stamp_rx;
	dbcc_time_stamp_t can_0x63b_BMS_M4_Cell_Voltage_Data_3_time_stamp_rx;
	dbcc_time_stamp_t can_0x63c_BMS_M5_Cell_Voltage_Data_1_time_stamp_rx;
	dbcc_time_stamp_t can_0x63d_BMS_M5_Cell_Voltage_Data_2_time_stamp_rx;
	dbcc_time_stamp_t can_0x63e_BMS_M5_Cell_Voltage_Data_3_time_stamp_rx;
	dbcc_time_stamp_t can_0x63f_BMS_M6_Cell_Voltage_Data_1_time_stamp_rx;
	dbcc_time_stamp_t can_0x640_BMS_M6_Cell_Voltage_Data_2_time_stamp_rx;
	dbcc_time_stamp_t can_0x641_BMS_M6_Cell_Voltage_Data_3_time_stamp_rx;
	dbcc_time_stamp_t can_0x642_BMS_M7_Cell_Voltage_Data_1_time_stamp_rx;
	dbcc_time_stamp_t can_0x643_BMS_M7_Cell_Voltage_Data_2_time_stamp_rx;
	dbcc_time_stamp_t can_0x644_BMS_M7_Cell_Voltage_Data_3_time_stamp_rx;
	dbcc_time_stamp_t can_0x645_BMS_M8_Cell_Voltage_Data_1_time_stamp_rx;
	dbcc_time_stamp_t can_0x646_BMS_M8_Cell_Voltage_Data_2_time_stamp_rx;
	dbcc_time_stamp_t can_0x647_BMS_M8_Cell_Voltage_Data_3_time_stamp_rx;
	dbcc_time_stamp_t can_0x680_BMS_M1_Cell_Temp_Data_time_stamp_rx;
	dbcc_time_stamp_t can_0x683_BMS_M2_Cell_Temp_Data_time_stamp_rx;
	dbcc_time_stamp_t can_0x686_BMS_M3_Cell_Temp_Data_time_stamp_rx;
	dbcc_time_stamp_t can_0x689_BMS_M4_Cell_Temp_Data_time_stamp_rx;
	dbcc_time_stamp_t can_0x68c_BMS_M5_Cell_Temp_Data_time_stamp_rx;
	dbcc_time_stamp_t can_0x68f_BMS_M6_Cell_Temp_Data_time_stamp_rx;
	dbcc_time_stamp_t can_0x692_BMS_M7_Cell_Temp_Data_time_stamp_rx;
	dbcc_time_stamp_t can_0x695_BMS_M8_Cell_Temp_Data_time_stamp_rx;
	dbcc_time_stamp_t can_0x6fc_BMS_Configuration_Information_time_stamp_rx;
	dbcc_time_stamp_t can_0x6fe_BMS_Firmware_Version_Information_time_stamp_rx;
	dbcc_time_stamp_t can_0x702_MCM_RegenModeICSent_time_stamp_rx;
	dbcc_time_stamp_t can_0x710_S2C_PressureTabs_time_stamp_rx;
	unsigned can_0x0a0_MCM_Temperature_Set_1_status : 2;
	unsigned can_0x0a0_MCM_Temperature_Set_1_tx : 1;
	unsigned can_0x0a0_MCM_Temperature_Set_1_rx : 1;
	unsigned can_0x0a1_MCM_Temperature_Set_2_status : 2;
	unsigned can_0x0a1_MCM_Temperature_Set_2_tx : 1;
	unsigned can_0x0a1_MCM_Temperature_Set_2_rx : 1;
	unsigned can_0x0a2_MCM_Temperature_Set_3_status : 2;
	unsigned can_0x0a2_MCM_Temperature_Set_3_tx : 1;
	unsigned can_0x0a2_MCM_Temperature_Set_3_rx : 1;
	unsigned can_0x0a3_MCM_Analog_Input_Voltages_status : 2;
	unsigned can_0x0a3_MCM_Analog_Input_Voltages_tx : 1;
	unsigned can_0x0a3_MCM_Analog_Input_Voltages_rx : 1;
	unsigned can_0x0a4_MCM_Digital_Input_Status_status : 2;
	unsigned can_0x0a4_MCM_Digital_Input_Status_tx : 1;
	unsigned can_0x0a4_MCM_Digital_Input_Status_rx : 1;
	unsigned can_0x0a5_MCM_Motor_Position_Info_status : 2;
	unsigned can_0x0a5_MCM_Motor_Position_Info_tx : 1;
	unsigned can_0x0a5_MCM_Motor_Position_Info_rx : 1;
	unsigned can_0x0a6_MCM_Current_Info_status : 2;
	unsigned can_0x0a6_MCM_Current_Info_tx : 1;
	unsigned can_0x0a6_MCM_Current_Info_rx : 1;
	unsigned can_0x0a7_MCM_Voltage_Info_status : 2;
	unsigned can_0x0a7_MCM_Voltage_Info_tx : 1;
	unsigned can_0x0a7_MCM_Voltage_Info_rx : 1;
	unsigned can_0x0a8_MCM_Flux_ID_IQ_Info_status : 2;
	unsigned can_0x0a8_MCM_Flux_ID_IQ_Info_tx : 1;
	unsigned can_0x0a8_MCM_Flux_ID_IQ_Info_rx : 1;
	unsigned can_0x0a9_MCM_Internal_Voltages_status : 2;
	unsigned can_0x0a9_MCM_Internal_Voltages_tx : 1;
	unsigned can_0x0a9_MCM_Internal_Voltages_rx : 1;
	unsigned can_0x0aa_MCM_Internal_States_status : 2;
	unsigned can_0x0aa_MCM_Internal_States_tx : 1;
	unsigned can_0x0aa_MCM_Internal_States_rx : 1;
	unsigned can_0x0ab_MCM_Fault_Codes_status : 2;
	unsigned can_0x0ab_MCM_Fault_Codes_tx : 1;
	unsigned can_0x0ab_MCM_Fault_Codes_rx : 1;
	unsigned can_0x0ac_MCM_Torque_And_Timer_Info_status : 2;
	unsigned can_0x0ac_MCM_Torque_And_Timer_Info_tx : 1;
	unsigned can_0x0ac_MCM_Torque_And_Timer_Info_rx : 1;
	unsigned can_0x0ad_MCM_Modulation_And_Flux_Info_status : 2;
	unsigned can_0x0ad_MCM_Modulation_And_Flux_Info_tx : 1;
	unsigned can_0x0ad_MCM_Modulation_And_Flux_Info_rx : 1;
	unsigned can_0x0ae_MCM_Firmware_Info_status : 2;
	unsigned can_0x0ae_MCM_Firmware_Info_tx : 1;
	unsigned can_0x0ae_MCM_Firmware_Info_rx : 1;
	unsigned can_0x0af_MCM_Diag_Data_status : 2;
	unsigned can_0x0af_MCM_Diag_Data_tx : 1;
	unsigned can_0x0af_MCM_Diag_Data_rx : 1;
	unsigned can_0x0c0_MCM_Command_Messages_status : 2;
	unsigned can_0x0c0_MCM_Command_Messages_tx : 1;
	unsigned can_0x0c0_MCM_Command_Messages_rx : 1;
	unsigned can_0x0c1_MCM_Read_Write_Param_Command_status : 2;
	unsigned can_0x0c1_MCM_Read_Write_Param_Command_tx : 1;
	unsigned can_0x0c1_MCM_Read_Write_Param_Command_rx : 1;
	unsigned can_0x0c2_MCM_Read_Write_Param_Response_status : 2;
	unsigned can_0x0c2_MCM_Read_Write_Param_Response_tx : 1;
	unsigned can_0x0c2_MCM_Read_Write_Param_Response_rx : 1;
	unsigned can_0x100_EMeter_Measurement_status : 2;
	unsigned can_0x100_EMeter_Measurement_tx : 1;
	unsigned can_0x100_EMeter_Measurement_rx : 1;
	unsigned can_0x1d5_MCM_U2C_Message_Rxd_status : 2;
	unsigned can_0x1d5_MCM_U2C_Message_Rxd_tx : 1;
	unsigned can_0x1d5_MCM_U2C_Message_Rxd_rx : 1;
	unsigned can_0x1d7_MCM_U2C_Command_Txd_status : 2;
	unsigned can_0x1d7_MCM_U2C_Command_Txd_tx : 1;
	unsigned can_0x1d7_MCM_U2C_Command_Txd_rx : 1;
	unsigned can_0x400_EMeter_Status_status : 2;
	unsigned can_0x400_EMeter_Status_tx : 1;
	unsigned can_0x400_EMeter_Status_rx : 1;
	unsigned can_0x4b0_DAQ_LF_Tire_Temp_Ch1_4_status : 2;
	unsigned can_0x4b0_DAQ_LF_Tire_Temp_Ch1_4_tx : 1;
	unsigned can_0x4b0_DAQ_LF_Tire_Temp_Ch1_4_rx : 1;
	unsigned can_0x4b1_DAQ_LF_Tire_Temp_Ch5_8_status : 2;
	unsigned can_0x4b1_DAQ_LF_Tire_Temp_Ch5_8_tx : 1;
	unsigned can_0x4b1_DAQ_LF_Tire_Temp_Ch5_8_rx : 1;
	unsigned can_0x4b2_DAQ_LF_Tire_Temp_Ch9_12_status : 2;
	unsigned can_0x4b2_DAQ_LF_Tire_Temp_Ch9_12_tx : 1;
	unsigned can_0x4b2_DAQ_LF_Tire_Temp_Ch9_12_rx : 1;
	unsigned can_0x4b3_DAQ_LF_Tire_Temp_Ch13_16_status : 2;
	unsigned can_0x4b3_DAQ_LF_Tire_Temp_Ch13_16_tx : 1;
	unsigned can_0x4b3_DAQ_LF_Tire_Temp_Ch13_16_rx : 1;
	unsigned can_0x4b4_DAQ_RF_Tire_Temp_Ch1_4_status : 2;
	unsigned can_0x4b4_DAQ_RF_Tire_Temp_Ch1_4_tx : 1;
	unsigned can_0x4b4_DAQ_RF_Tire_Temp_Ch1_4_rx : 1;
	unsigned can_0x4b5_DAQ_RF_Tire_Temp_Ch5_8_status : 2;
	unsigned can_0x4b5_DAQ_RF_Tire_Temp_Ch5_8_tx : 1;
	unsigned can_0x4b5_DAQ_RF_Tire_Temp_Ch5_8_rx : 1;
	unsigned can_0x4b6_DAQ_RF_Tire_Temp_Ch9_12_status : 2;
	unsigned can_0x4b6_DAQ_RF_Tire_Temp_Ch9_12_tx : 1;
	unsigned can_0x4b6_DAQ_RF_Tire_Temp_Ch9_12_rx : 1;
	unsigned can_0x4b7_DAQ_RF_Tire_Temp_Ch13_16_status : 2;
	unsigned can_0x4b7_DAQ_RF_Tire_Temp_Ch13_16_tx : 1;
	unsigned can_0x4b7_DAQ_RF_Tire_Temp_Ch13_16_rx : 1;
	unsigned can_0x4b8_DAQ_LR_Tire_Temp_Ch1_4_status : 2;
	unsigned can_0x4b8_DAQ_LR_Tire_Temp_Ch1_4_tx : 1;
	unsigned can_0x4b8_DAQ_LR_Tire_Temp_Ch1_4_rx : 1;
	unsigned can_0x4b9_DAQ_LR_Tire_Temp_Ch5_8_status : 2;
	unsigned can_0x4b9_DAQ_LR_Tire_Temp_Ch5_8_tx : 1;
	unsigned can_0x4b9_DAQ_LR_Tire_Temp_Ch5_8_rx : 1;
	unsigned can_0x4ba_DAQ_LR_Tire_Temp_Ch9_12_status : 2;
	unsigned can_0x4ba_DAQ_LR_Tire_Temp_Ch9_12_tx : 1;
	unsigned can_0x4ba_DAQ_LR_Tire_Temp_Ch9_12_rx : 1;
	unsigned can_0x4bb_DAQ_LR_Tire_Temp_Ch13_16_status : 2;
	unsigned can_0x4bb_DAQ_LR_Tire_Temp_Ch13_16_tx : 1;
	unsigned can_0x4bb_DAQ_LR_Tire_Temp_Ch13_16_rx : 1;
	unsigned can_0x4bc_DAQ_RR_Tire_Temp_Ch1_4_status : 2;
	unsigned can_0x4bc_DAQ_RR_Tire_Temp_Ch1_4_tx : 1;
	unsigned can_0x4bc_DAQ_RR_Tire_Temp_Ch1_4_rx : 1;
	unsigned can_0x4bd_DAQ_RR_Tire_Temp_Ch5_8_status : 2;
	unsigned can_0x4bd_DAQ_RR_Tire_Temp_Ch5_8_tx : 1;
	unsigned can_0x4bd_DAQ_RR_Tire_Temp_Ch5_8_rx : 1;
	unsigned can_0x4be_DAQ_RR_Tire_Temp_Ch9_12_status : 2;
	unsigned can_0x4be_DAQ_RR_Tire_Temp_Ch9_12_tx : 1;
	unsigned can_0x4be_DAQ_RR_Tire_Temp_Ch9_12_rx : 1;
	unsigned can_0x4bf_DAQ_RR_Tire_Temp_Ch13_16_status : 2;
	unsigned can_0x4bf_DAQ_RR_Tire_Temp_Ch13_16_tx : 1;
	unsigned can_0x4bf_DAQ_RR_Tire_Temp_Ch13_16_rx : 1;
	unsigned can_0x500_VCU_TPS0_status : 2;
	unsigned can_0x500_VCU_TPS0_tx : 1;
	unsigned can_0x500_VCU_TPS0_rx : 1;
	unsigned can_0x501_VCU_TPS1_status : 2;
	unsigned can_0x501_VCU_TPS1_tx : 1;
	unsigned can_0x501_VCU_TPS1_rx : 1;
	unsigned can_0x502_VCU_BPS0_status : 2;
	unsigned can_0x502_VCU_BPS0_tx : 1;
	unsigned can_0x502_VCU_BPS0_rx : 1;
	unsigned can_0x504_VCU_WSS_status : 2;
	unsigned can_0x504_VCU_WSS_tx : 1;
	unsigned can_0x504_VCU_WSS_rx : 1;
	unsigned can_0x505_VCU_WSS_Smooth_status : 2;
	unsigned can_0x505_VCU_WSS_Smooth_tx : 1;
	unsigned can_0x505_VCU_WSS_Smooth_rx : 1;
	unsigned can_0x506_VCU_Safety_Checker_status : 2;
	unsigned can_0x506_VCU_Safety_Checker_tx : 1;
	unsigned can_0x506_VCU_Safety_Checker_rx : 1;
	unsigned can_0x507_Low_Voltage_status : 2;
	unsigned can_0x507_Low_Voltage_tx : 1;
	unsigned can_0x507_Low_Voltage_rx : 1;
	unsigned can_0x508_VCU_Regen_Settings_status : 2;
	unsigned can_0x508_VCU_Regen_Settings_tx : 1;
	unsigned can_0x508_VCU_Regen_Settings_rx : 1;
	unsigned can_0x509_MCM_RTD_HVIL_status : 2;
	unsigned can_0x509_MCM_RTD_HVIL_tx : 1;
	unsigned can_0x509_MCM_RTD_HVIL_rx : 1;
	unsigned can_0x50a_Ground_Speed_status : 2;
	unsigned can_0x50a_Ground_Speed_tx : 1;
	unsigned can_0x50a_Ground_Speed_rx : 1;
	unsigned can_0x50c_Launch_Control_Additional_Information_status : 2;
	unsigned can_0x50c_Launch_Control_Additional_Information_tx : 1;
	unsigned can_0x50c_Launch_Control_Additional_Information_rx : 1;
	unsigned can_0x50d_VCU_BPS1_status : 2;
	unsigned can_0x50d_VCU_BPS1_tx : 1;
	unsigned can_0x50d_VCU_BPS1_rx : 1;
	unsigned can_0x50e_VCU_BMS_Debug_1_status : 2;
	unsigned can_0x50e_VCU_BMS_Debug_1_tx : 1;
	unsigned can_0x50e_VCU_BMS_Debug_1_rx : 1;
	unsigned can_0x50f_VCU_BMS_Debug_2_status : 2;
	unsigned can_0x50f_VCU_BMS_Debug_2_tx : 1;
	unsigned can_0x50f_VCU_BMS_Debug_2_rx : 1;
	unsigned can_0x510_VCU_80kW_Debug_status : 2;
	unsigned can_0x510_VCU_80kW_Debug_tx : 1;
	unsigned can_0x510_VCU_80kW_Debug_rx : 1;
	unsigned can_0x511_VCU_Power_Limit_Overview_status : 2;
	unsigned can_0x511_VCU_Power_Limit_Overview_tx : 1;
	unsigned can_0x511_VCU_Power_Limit_Overview_rx : 1;
	unsigned can_0x512_VCU_Power_Limit_PID_Output_Details_status : 2;
	unsigned can_0x512_VCU_Power_Limit_PID_Output_Details_tx : 1;
	unsigned can_0x512_VCU_Power_Limit_PID_Output_Details_rx : 1;
	unsigned can_0x513_VCU_Power_Limit_LUT_Parameters_status : 2;
	unsigned can_0x513_VCU_Power_Limit_LUT_Parameters_tx : 1;
	unsigned can_0x513_VCU_Power_Limit_LUT_Parameters_rx : 1;
	unsigned can_0x514_VCU_Power_Limit_PID_Information_status : 2;
	unsigned can_0x514_VCU_Power_Limit_PID_Information_tx : 1;
	unsigned can_0x514_VCU_Power_Limit_PID_Information_rx : 1;
	unsigned can_0x515_DRS_SAS_status : 2;
	unsigned can_0x515_DRS_SAS_tx : 1;
	unsigned can_0x515_DRS_SAS_rx : 1;
	unsigned can_0x5ff_Enable_Inverter_status : 2;
	unsigned can_0x5ff_Enable_Inverter_tx : 1;
	unsigned can_0x5ff_Enable_Inverter_rx : 1;
	unsigned can_0x600_BMS_State_Command_status : 2;
	unsigned can_0x600_BMS_State_Command_tx : 1;
	unsigned can_0x600_BMS_State_Command_rx : 1;
	unsigned can_0x602_BMS_Master_Faults_status : 2;
	unsigned can_0x602_BMS_Master_Faults_tx : 1;
	unsigned can_0x602_BMS_Master_Faults_rx : 1;
	unsigned can_0x604_BMS_Master_Warnings_status : 2;
	unsigned can_0x604_BMS_Master_Warnings_tx : 1;
	unsigned can_0x604_BMS_Master_Warnings_rx : 1;
	unsigned can_0x610_BMS_Master_System_Status_status : 2;
	unsigned can_0x610_BMS_Master_System_Status_tx : 1;
	unsigned can_0x610_BMS_Master_System_Status_rx : 1;
	unsigned can_0x611_BMS_Pack_Safe_OE_status : 2;
	unsigned can_0x611_BMS_Pack_Safe_OE_tx : 1;
	unsigned can_0x611_BMS_Pack_Safe_OE_rx : 1;
	unsigned can_0x612_BMS_Master_Local_Board_Measurements_status : 2;
	unsigned can_0x612_BMS_Master_Local_Board_Measurements_tx : 1;
	unsigned can_0x612_BMS_Master_Local_Board_Measurements_rx : 1;
	unsigned can_0x620_BMS_Pack_Level_Measurements_1_status : 2;
	unsigned can_0x620_BMS_Pack_Level_Measurements_1_tx : 1;
	unsigned can_0x620_BMS_Pack_Level_Measurements_1_rx : 1;
	unsigned can_0x621_BMS_Pack_Level_Measurements_2_status : 2;
	unsigned can_0x621_BMS_Pack_Level_Measurements_2_tx : 1;
	unsigned can_0x621_BMS_Pack_Level_Measurements_2_rx : 1;
	unsigned can_0x622_BMS_Cell_Voltage_Summary_status : 2;
	unsigned can_0x622_BMS_Cell_Voltage_Summary_tx : 1;
	unsigned can_0x622_BMS_Cell_Voltage_Summary_rx : 1;
	unsigned can_0x623_BMS_Cell_Temperature_Summary_status : 2;
	unsigned can_0x623_BMS_Cell_Temperature_Summary_tx : 1;
	unsigned can_0x623_BMS_Cell_Temperature_Summary_rx : 1;
	unsigned can_0x624_BMS_Pack_Level_Measurements_3_status : 2;
	unsigned can_0x624_BMS_Pack_Level_Measurements_3_tx : 1;
	unsigned can_0x624_BMS_Pack_Level_Measurements_3_rx : 1;
	unsigned can_0x630_BMS_M1_Cell_Voltage_Data_1_status : 2;
	unsigned can_0x630_BMS_M1_Cell_Voltage_Data_1_tx : 1;
	unsigned can_0x630_BMS_M1_Cell_Voltage_Data_1_rx : 1;
	unsigned can_0x631_BMS_M1_Cell_Voltage_Data_2_status : 2;
	unsigned can_0x631_BMS_M1_Cell_Voltage_Data_2_tx : 1;
	unsigned can_0x631_BMS_M1_Cell_Voltage_Data_2_rx : 1;
	unsigned can_0x632_BMS_M1_Cell_Voltage_Data_3_status : 2;
	unsigned can_0x632_BMS_M1_Cell_Voltage_Data_3_tx : 1;
	unsigned can_0x632_BMS_M1_Cell_Voltage_Data_3_rx : 1;
	unsigned can_0x633_BMS_M2_Cell_Voltage_Data_1_status : 2;
	unsigned can_0x633_BMS_M2_Cell_Voltage_Data_1_tx : 1;
	unsigned can_0x633_BMS_M2_Cell_Voltage_Data_1_rx : 1;
	unsigned can_0x634_BMS_M2_Cell_Voltage_Data_2_status : 2;
	unsigned can_0x634_BMS_M2_Cell_Voltage_Data_2_tx : 1;
	unsigned can_0x634_BMS_M2_Cell_Voltage_Data_2_rx : 1;
	unsigned can_0x635_BMS_M2_Cell_Voltage_Data_3_status : 2;
	unsigned can_0x635_BMS_M2_Cell_Voltage_Data_3_tx : 1;
	unsigned can_0x635_BMS_M2_Cell_Voltage_Data_3_rx : 1;
	unsigned can_0x636_BMS_M3_Cell_Voltage_Data_1_status : 2;
	unsigned can_0x636_BMS_M3_Cell_Voltage_Data_1_tx : 1;
	unsigned can_0x636_BMS_M3_Cell_Voltage_Data_1_rx : 1;
	unsigned can_0x637_BMS_M3_Cell_Voltage_Data_2_status : 2;
	unsigned can_0x637_BMS_M3_Cell_Voltage_Data_2_tx : 1;
	unsigned can_0x637_BMS_M3_Cell_Voltage_Data_2_rx : 1;
	unsigned can_0x638_BMS_M3_Cell_Voltage_Data_3_status : 2;
	unsigned can_0x638_BMS_M3_Cell_Voltage_Data_3_tx : 1;
	unsigned can_0x638_BMS_M3_Cell_Voltage_Data_3_rx : 1;
	unsigned can_0x639_BMS_M4_Cell_Voltage_Data_1_status : 2;
	unsigned can_0x639_BMS_M4_Cell_Voltage_Data_1_tx : 1;
	unsigned can_0x639_BMS_M4_Cell_Voltage_Data_1_rx : 1;
	unsigned can_0x63a_BMS_M4_Cell_Voltage_Data_2_status : 2;
	unsigned can_0x63a_BMS_M4_Cell_Voltage_Data_2_tx : 1;
	unsigned can_0x63a_BMS_M4_Cell_Voltage_Data_2_rx : 1;
	unsigned can_0x63b_BMS_M4_Cell_Voltage_Data_3_status : 2;
	unsigned can_0x63b_BMS_M4_Cell_Voltage_Data_3_tx : 1;
	unsigned can_0x63b_BMS_M4_Cell_Voltage_Data_3_rx : 1;
	unsigned can_0x63c_BMS_M5_Cell_Voltage_Data_1_status : 2;
	unsigned can_0x63c_BMS_M5_Cell_Voltage_Data_1_tx : 1;
	unsigned can_0x63c_BMS_M5_Cell_Voltage_Data_1_rx : 1;
	unsigned can_0x63d_BMS_M5_Cell_Voltage_Data_2_status : 2;
	unsigned can_0x63d_BMS_M5_Cell_Voltage_Data_2_tx : 1;
	unsigned can_0x63d_BMS_M5_Cell_Voltage_Data_2_rx : 1;
	unsigned can_0x63e_BMS_M5_Cell_Voltage_Data_3_status : 2;
	unsigned can_0x63e_BMS_M5_Cell_Voltage_Data_3_tx : 1;
	unsigned can_0x63e_BMS_M5_Cell_Voltage_Data_3_rx : 1;
	unsigned can_0x63f_BMS_M6_Cell_Voltage_Data_1_status : 2;
	unsigned can_0x63f_BMS_M6_Cell_Voltage_Data_1_tx : 1;
	unsigned can_0x63f_BMS_M6_Cell_Voltage_Data_1_rx : 1;
	unsigned can_0x640_BMS_M6_Cell_Voltage_Data_2_status : 2;
	unsigned can_0x640_BMS_M6_Cell_Voltage_Data_2_tx : 1;
	unsigned can_0x640_BMS_M6_Cell_Voltage_Data_2_rx : 1;
	unsigned can_0x641_BMS_M6_Cell_Voltage_Data_3_status : 2;
	unsigned can_0x641_BMS_M6_Cell_Voltage_Data_3_tx : 1;
	unsigned can_0x641_BMS_M6_Cell_Voltage_Data_3_rx : 1;
	unsigned can_0x642_BMS_M7_Cell_Voltage_Data_1_status : 2;
	unsigned can_0x642_BMS_M7_Cell_Voltage_Data_1_tx : 1;
	unsigned can_0x642_BMS_M7_Cell_Voltage_Data_1_rx : 1;
	unsigned can_0x643_BMS_M7_Cell_Voltage_Data_2_status : 2;
	unsigned can_0x643_BMS_M7_Cell_Voltage_Data_2_tx : 1;
	unsigned can_0x643_BMS_M7_Cell_Voltage_Data_2_rx : 1;
	unsigned can_0x644_BMS_M7_Cell_Voltage_Data_3_status : 2;
	unsigned can_0x644_BMS_M7_Cell_Voltage_Data_3_tx : 1;
	unsigned can_0x644_BMS_M7_Cell_Voltage_Data_3_rx : 1;
	unsigned can_0x645_BMS_M8_Cell_Voltage_Data_1_status : 2;
	unsigned can_0x645_BMS_M8_Cell_Voltage_Data_1_tx : 1;
	unsigned can_0x645_BMS_M8_Cell_Voltage_Data_1_rx : 1;
	unsigned can_0x646_BMS_M8_Cell_Voltage_Data_2_status : 2;
	unsigned can_0x646_BMS_M8_Cell_Voltage_Data_2_tx : 1;
	unsigned can_0x646_BMS_M8_Cell_Voltage_Data_2_rx : 1;
	unsigned can_0x647_BMS_M8_Cell_Voltage_Data_3_status : 2;
	unsigned can_0x647_BMS_M8_Cell_Voltage_Data_3_tx : 1;
	unsigned can_0x647_BMS_M8_Cell_Voltage_Data_3_rx : 1;
	unsigned can_0x680_BMS_M1_Cell_Temp_Data_status : 2;
	unsigned can_0x680_BMS_M1_Cell_Temp_Data_tx : 1;
	unsigned can_0x680_BMS_M1_Cell_Temp_Data_rx : 1;
	unsigned can_0x683_BMS_M2_Cell_Temp_Data_status : 2;
	unsigned can_0x683_BMS_M2_Cell_Temp_Data_tx : 1;
	unsigned can_0x683_BMS_M2_Cell_Temp_Data_rx : 1;
	unsigned can_0x686_BMS_M3_Cell_Temp_Data_status : 2;
	unsigned can_0x686_BMS_M3_Cell_Temp_Data_tx : 1;
	unsigned can_0x686_BMS_M3_Cell_Temp_Data_rx : 1;
	unsigned can_0x689_BMS_M4_Cell_Temp_Data_status : 2;
	unsigned can_0x689_BMS_M4_Cell_Temp_Data_tx : 1;
	unsigned can_0x689_BMS_M4_Cell_Temp_Data_rx : 1;
	unsigned can_0x68c_BMS_M5_Cell_Temp_Data_status : 2;
	unsigned can_0x68c_BMS_M5_Cell_Temp_Data_tx : 1;
	unsigned can_0x68c_BMS_M5_Cell_Temp_Data_rx : 1;
	unsigned can_0x68f_BMS_M6_Cell_Temp_Data_status : 2;
	unsigned can_0x68f_BMS_M6_Cell_Temp_Data_tx : 1;
	unsigned can_0x68f_BMS_M6_Cell_Temp_Data_rx : 1;
	unsigned can_0x692_BMS_M7_Cell_Temp_Data_status : 2;
	unsigned can_0x692_BMS_M7_Cell_Temp_Data_tx : 1;
	unsigned can_0x692_BMS_M7_Cell_Temp_Data_rx : 1;
	unsigned can_0x695_BMS_M8_Cell_Temp_Data_status : 2;
	unsigned can_0x695_BMS_M8_Cell_Temp_Data_tx : 1;
	unsigned can_0x695_BMS_M8_Cell_Temp_Data_rx : 1;
	unsigned can_0x6fc_BMS_Configuration_Information_status : 2;
	unsigned can_0x6fc_BMS_Configuration_Information_tx : 1;
	unsigned can_0x6fc_BMS_Configuration_Information_rx : 1;
	unsigned can_0x6fe_BMS_Firmware_Version_Information_status : 2;
	unsigned can_0x6fe_BMS_Firmware_Version_Information_tx : 1;
	unsigned can_0x6fe_BMS_Firmware_Version_Information_rx : 1;
	unsigned can_0x702_MCM_RegenModeICSent_status : 2;
	unsigned can_0x702_MCM_RegenModeICSent_tx : 1;
	unsigned can_0x702_MCM_RegenModeICSent_rx : 1;
	unsigned can_0x710_S2C_PressureTabs_status : 2;
	unsigned can_0x710_S2C_PressureTabs_tx : 1;
	unsigned can_0x710_S2C_PressureTabs_rx : 1;
	can_0x0a0_MCM_Temperature_Set_1_t can_0x0a0_MCM_Temperature_Set_1;
	can_0x0a1_MCM_Temperature_Set_2_t can_0x0a1_MCM_Temperature_Set_2;
	can_0x0a2_MCM_Temperature_Set_3_t can_0x0a2_MCM_Temperature_Set_3;
	can_0x0a3_MCM_Analog_Input_Voltages_t can_0x0a3_MCM_Analog_Input_Voltages;
	can_0x0a4_MCM_Digital_Input_Status_t can_0x0a4_MCM_Digital_Input_Status;
	can_0x0a5_MCM_Motor_Position_Info_t can_0x0a5_MCM_Motor_Position_Info;
	can_0x0a6_MCM_Current_Info_t can_0x0a6_MCM_Current_Info;
	can_0x0a7_MCM_Voltage_Info_t can_0x0a7_MCM_Voltage_Info;
	can_0x0a8_MCM_Flux_ID_IQ_Info_t can_0x0a8_MCM_Flux_ID_IQ_Info;
	can_0x0a9_MCM_Internal_Voltages_t can_0x0a9_MCM_Internal_Voltages;
	can_0x0aa_MCM_Internal_States_t can_0x0aa_MCM_Internal_States;
	can_0x0ab_MCM_Fault_Codes_t can_0x0ab_MCM_Fault_Codes;
	can_0x0ac_MCM_Torque_And_Timer_Info_t can_0x0ac_MCM_Torque_And_Timer_Info;
	can_0x0ad_MCM_Modulation_And_Flux_Info_t can_0x0ad_MCM_Modulation_And_Flux_Info;
	can_0x0ae_MCM_Firmware_Info_t can_0x0ae_MCM_Firmware_Info;
	can_0x0af_MCM_Diag_Data_t can_0x0af_MCM_Diag_Data;
	can_0x0c0_MCM_Command_Messages_t can_0x0c0_MCM_Command_Messages;
	can_0x0c1_MCM_Read_Write_Param_Command_t can_0x0c1_MCM_Read_Write_Param_Command;
	can_0x0c2_MCM_Read_Write_Param_Response_t can_0x0c2_MCM_Read_Write_Param_Response;
	can_0x100_EMeter_Measurement_t can_0x100_EMeter_Measurement;
	can_0x1d5_MCM_U2C_Message_Rxd_t can_0x1d5_MCM_U2C_Message_Rxd;
	can_0x1d7_MCM_U2C_Command_Txd_t can_0x1d7_MCM_U2C_Command_Txd;
	can_0x400_EMeter_Status_t can_0x400_EMeter_Status;
	can_0x4b0_DAQ_LF_Tire_Temp_Ch1_4_t can_0x4b0_DAQ_LF_Tire_Temp_Ch1_4;
	can_0x4b1_DAQ_LF_Tire_Temp_Ch5_8_t can_0x4b1_DAQ_LF_Tire_Temp_Ch5_8;
	can_0x4b2_DAQ_LF_Tire_Temp_Ch9_12_t can_0x4b2_DAQ_LF_Tire_Temp_Ch9_12;
	can_0x4b3_DAQ_LF_Tire_Temp_Ch13_16_t can_0x4b3_DAQ_LF_Tire_Temp_Ch13_16;
	can_0x4b4_DAQ_RF_Tire_Temp_Ch1_4_t can_0x4b4_DAQ_RF_Tire_Temp_Ch1_4;
	can_0x4b5_DAQ_RF_Tire_Temp_Ch5_8_t can_0x4b5_DAQ_RF_Tire_Temp_Ch5_8;
	can_0x4b6_DAQ_RF_Tire_Temp_Ch9_12_t can_0x4b6_DAQ_RF_Tire_Temp_Ch9_12;
	can_0x4b7_DAQ_RF_Tire_Temp_Ch13_16_t can_0x4b7_DAQ_RF_Tire_Temp_Ch13_16;
	can_0x4b8_DAQ_LR_Tire_Temp_Ch1_4_t can_0x4b8_DAQ_LR_Tire_Temp_Ch1_4;
	can_0x4b9_DAQ_LR_Tire_Temp_Ch5_8_t can_0x4b9_DAQ_LR_Tire_Temp_Ch5_8;
	can_0x4ba_DAQ_LR_Tire_Temp_Ch9_12_t can_0x4ba_DAQ_LR_Tire_Temp_Ch9_12;
	can_0x4bb_DAQ_LR_Tire_Temp_Ch13_16_t can_0x4bb_DAQ_LR_Tire_Temp_Ch13_16;
	can_0x4bc_DAQ_RR_Tire_Temp_Ch1_4_t can_0x4bc_DAQ_RR_Tire_Temp_Ch1_4;
	can_0x4bd_DAQ_RR_Tire_Temp_Ch5_8_t can_0x4bd_DAQ_RR_Tire_Temp_Ch5_8;
	can_0x4be_DAQ_RR_Tire_Temp_Ch9_12_t can_0x4be_DAQ_RR_Tire_Temp_Ch9_12;
	can_0x4bf_DAQ_RR_Tire_Temp_Ch13_16_t can_0x4bf_DAQ_RR_Tire_Temp_Ch13_16;
	can_0x500_VCU_TPS0_t can_0x500_VCU_TPS0;
	can_0x501_VCU_TPS1_t can_0x501_VCU_TPS1;
	can_0x502_VCU_BPS0_t can_0x502_VCU_BPS0;
	can_0x504_VCU_WSS_t can_0x504_VCU_WSS;
	can_0x505_VCU_WSS_Smooth_t can_0x505_VCU_WSS_Smooth;
	can_0x506_VCU_Safety_Checker_t can_0x506_VCU_Safety_Checker;
	can_0x507_Low_Voltage_t can_0x507_Low_Voltage;
	can_0x508_VCU_Regen_Settings_t can_0x508_VCU_Regen_Settings;
	can_0x509_MCM_RTD_HVIL_t can_0x509_MCM_RTD_HVIL;
	can_0x50a_Ground_Speed_t can_0x50a_Ground_Speed;
	can_0x50c_Launch_Control_Additional_Information_t can_0x50c_Launch_Control_Additional_Information;
	can_0x50d_VCU_BPS1_t can_0x50d_VCU_BPS1;
	can_0x50e_VCU_BMS_Debug_1_t can_0x50e_VCU_BMS_Debug_1;
	can_0x50f_VCU_BMS_Debug_2_t can_0x50f_VCU_BMS_Debug_2;
	can_0x510_VCU_80kW_Debug_t can_0x510_VCU_80kW_Debug;
	can_0x511_VCU_Power_Limit_Overview_t can_0x511_VCU_Power_Limit_Overview;
	can_0x512_VCU_Power_Limit_PID_Output_Details_t can_0x512_VCU_Power_Limit_PID_Output_Details;
	can_0x513_VCU_Power_Limit_LUT_Parameters_t can_0x513_VCU_Power_Limit_LUT_Parameters;
	can_0x514_VCU_Power_Limit_PID_Information_t can_0x514_VCU_Power_Limit_PID_Information;
	can_0x515_DRS_SAS_t can_0x515_DRS_SAS;
	can_0x5ff_Enable_Inverter_t can_0x5ff_Enable_Inverter;
	can_0x600_BMS_State_Command_t can_0x600_BMS_State_Command;
	can_0x602_BMS_Master_Faults_t can_0x602_BMS_Master_Faults;
	can_0x604_BMS_Master_Warnings_t can_0x604_BMS_Master_Warnings;
	can_0x610_BMS_Master_System_Status_t can_0x610_BMS_Master_System_Status;
	can_0x611_BMS_Pack_Safe_OE_t can_0x611_BMS_Pack_Safe_OE;
	can_0x612_BMS_Master_Local_Board_Measurements_t can_0x612_BMS_Master_Local_Board_Measurements;
	can_0x620_BMS_Pack_Level_Measurements_1_t can_0x620_BMS_Pack_Level_Measurements_1;
	can_0x621_BMS_Pack_Level_Measurements_2_t can_0x621_BMS_Pack_Level_Measurements_2;
	can_0x622_BMS_Cell_Voltage_Summary_t can_0x622_BMS_Cell_Voltage_Summary;
	can_0x623_BMS_Cell_Temperature_Summary_t can_0x623_BMS_Cell_Temperature_Summary;
	can_0x624_BMS_Pack_Level_Measurements_3_t can_0x624_BMS_Pack_Level_Measurements_3;
	can_0x630_BMS_M1_Cell_Voltage_Data_1_t can_0x630_BMS_M1_Cell_Voltage_Data_1;
	can_0x631_BMS_M1_Cell_Voltage_Data_2_t can_0x631_BMS_M1_Cell_Voltage_Data_2;
	can_0x632_BMS_M1_Cell_Voltage_Data_3_t can_0x632_BMS_M1_Cell_Voltage_Data_3;
	can_0x633_BMS_M2_Cell_Voltage_Data_1_t can_0x633_BMS_M2_Cell_Voltage_Data_1;
	can_0x634_BMS_M2_Cell_Voltage_Data_2_t can_0x634_BMS_M2_Cell_Voltage_Data_2;
	can_0x635_BMS_M2_Cell_Voltage_Data_3_t can_0x635_BMS_M2_Cell_Voltage_Data_3;
	can_0x636_BMS_M3_Cell_Voltage_Data_1_t can_0x636_BMS_M3_Cell_Voltage_Data_1;
	can_0x637_BMS_M3_Cell_Voltage_Data_2_t can_0x637_BMS_M3_Cell_Voltage_Data_2;
	can_0x638_BMS_M3_Cell_Voltage_Data_3_t can_0x638_BMS_M3_Cell_Voltage_Data_3;
	can_0x639_BMS_M4_Cell_Voltage_Data_1_t can_0x639_BMS_M4_Cell_Voltage_Data_1;
	can_0x63a_BMS_M4_Cell_Voltage_Data_2_t can_0x63a_BMS_M4_Cell_Voltage_Data_2;
	can_0x63b_BMS_M4_Cell_Voltage_Data_3_t can_0x63b_BMS_M4_Cell_Voltage_Data_3;
	can_0x63c_BMS_M5_Cell_Voltage_Data_1_t can_0x63c_BMS_M5_Cell_Voltage_Data_1;
	can_0x63d_BMS_M5_Cell_Voltage_Data_2_t can_0x63d_BMS_M5_Cell_Voltage_Data_2;
	can_0x63e_BMS_M5_Cell_Voltage_Data_3_t can_0x63e_BMS_M5_Cell_Voltage_Data_3;
	can_0x63f_BMS_M6_Cell_Voltage_Data_1_t can_0x63f_BMS_M6_Cell_Voltage_Data_1;
	can_0x640_BMS_M6_Cell_Voltage_Data_2_t can_0x640_BMS_M6_Cell_Voltage_Data_2;
	can_0x641_BMS_M6_Cell_Voltage_Data_3_t can_0x641_BMS_M6_Cell_Voltage_Data_3;
	can_0x642_BMS_M7_Cell_Voltage_Data_1_t can_0x642_BMS_M7_Cell_Voltage_Data_1;
	can_0x643_BMS_M7_Cell_Voltage_Data_2_t can_0x643_BMS_M7_Cell_Voltage_Data_2;
	can_0x644_BMS_M7_Cell_Voltage_Data_3_t can_0x644_BMS_M7_Cell_Voltage_Data_3;
	can_0x645_BMS_M8_Cell_Voltage_Data_1_t can_0x645_BMS_M8_Cell_Voltage_Data_1;
	can_0x646_BMS_M8_Cell_Voltage_Data_2_t can_0x646_BMS_M8_Cell_Voltage_Data_2;
	can_0x647_BMS_M8_Cell_Voltage_Data_3_t can_0x647_BMS_M8_Cell_Voltage_Data_3;
	can_0x680_BMS_M1_Cell_Temp_Data_t can_0x680_BMS_M1_Cell_Temp_Data;
	can_0x683_BMS_M2_Cell_Temp_Data_t can_0x683_BMS_M2_Cell_Temp_Data;
	can_0x686_BMS_M3_Cell_Temp_Data_t can_0x686_BMS_M3_Cell_Temp_Data;
	can_0x689_BMS_M4_Cell_Temp_Data_t can_0x689_BMS_M4_Cell_Temp_Data;
	can_0x68c_BMS_M5_Cell_Temp_Data_t can_0x68c_BMS_M5_Cell_Temp_Data;
	can_0x68f_BMS_M6_Cell_Temp_Data_t can_0x68f_BMS_M6_Cell_Temp_Data;
	can_0x692_BMS_M7_Cell_Temp_Data_t can_0x692_BMS_M7_Cell_Temp_Data;
	can_0x695_BMS_M8_Cell_Temp_Data_t can_0x695_BMS_M8_Cell_Temp_Data;
	can_0x6fc_BMS_Configuration_Information_t can_0x6fc_BMS_Configuration_Information;
	can_0x6fe_BMS_Firmware_Version_Information_t can_0x6fe_BMS_Firmware_Version_Information;
	can_0x702_MCM_RegenModeICSent_t can_0x702_MCM_RegenModeICSent;
	can_0x710_S2C_PressureTabs_t can_0x710_S2C_PressureTabs;
} POSTPACK can_obj_all_sre_edited_h_t;

int unpack_message(can_obj_all_sre_edited_h_t *o, const unsigned long id, uint64_t data, uint8_t dlc, dbcc_time_stamp_t time_stamp);
int pack_message(can_obj_all_sre_edited_h_t *o, const unsigned long id, uint64_t *data);
int print_message(const can_obj_all_sre_edited_h_t *o, const unsigned long id, FILE *output);

int decode_can_0x0a0_MCM_Module_A_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a0_MCM_Module_A_Temperature(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a0_MCM_Module_B_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a0_MCM_Module_B_Temperature(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a0_MCM_Module_C_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a0_MCM_Module_C_Temperature(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a0_MCM_Gate_Driver_Board_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a0_MCM_Gate_Driver_Board_Temp(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x0a1_MCM_Control_Board_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a1_MCM_Control_Board_Temperature(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a1_MCM_RTD1_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a1_MCM_RTD1_Temperature(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a1_MCM_RTD2_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a1_MCM_RTD2_Temperature(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a1_MCM_RTD3_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a1_MCM_RTD3_Temperature(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x0a2_MCM_RTD4_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a2_MCM_RTD4_Temperature(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a2_MCM_RTD5_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a2_MCM_RTD5_Temperature(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a2_MCM_Motor_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a2_MCM_Motor_Temperature(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a2_MCM_Torque_Shudder(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a2_MCM_Torque_Shudder(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x0a3_MCM_Analog_Input_1(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a3_MCM_Analog_Input_1(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a3_MCM_Analog_Input_2(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a3_MCM_Analog_Input_2(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a3_MCM_Analog_Input_3(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a3_MCM_Analog_Input_3(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a3_MCM_Analog_Input_4(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a3_MCM_Analog_Input_4(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x0a4_MCM_Digital_Input_1(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0a4_MCM_Digital_Input_1(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0a4_MCM_Digital_Input_2(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0a4_MCM_Digital_Input_2(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0a4_MCM_Digital_Input_3(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0a4_MCM_Digital_Input_3(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0a4_MCM_Digital_Input_4(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0a4_MCM_Digital_Input_4(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0a4_MCM_Digital_Input_5(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0a4_MCM_Digital_Input_5(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0a4_MCM_Digital_Input_6(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0a4_MCM_Digital_Input_6(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0a4_MCM_Digital_Input_7(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0a4_MCM_Digital_Input_7(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0a4_MCM_Digital_Input_8(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0a4_MCM_Digital_Input_8(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x0a5_MCM_Motor_Angle(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a5_MCM_Motor_Angle(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a5_MCM_Motor_Speed(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x0a5_MCM_Motor_Speed(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x0a5_MCM_Electrical_Output_Freq(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a5_MCM_Electrical_Output_Freq(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a5_MCM_Resolver_Angle(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a5_MCM_Resolver_Angle(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x0a6_MCM_Phase_A_Current(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a6_MCM_Phase_A_Current(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a6_MCM_Phase_B_Current(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a6_MCM_Phase_B_Current(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a6_MCM_Phase_C_Current(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a6_MCM_Phase_C_Current(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a6_MCM_DC_Bus_Current(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a6_MCM_DC_Bus_Current(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x0a7_MCM_DC_Bus_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a7_MCM_DC_Bus_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a7_MCM_Output_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a7_MCM_Output_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a7_MCM_Phase_AB_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a7_MCM_Phase_AB_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a7_MCM_Phase_BC_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a7_MCM_Phase_BC_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x0a8_MCM_Flux_Command(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a8_MCM_Flux_Command(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a8_MCM_Flux_Feedback(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a8_MCM_Flux_Feedback(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a8_MCM_Id(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a8_MCM_Id(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a8_MCM_Iq(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a8_MCM_Iq(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x0a9_MCM_Reference_Voltage_1_5(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a9_MCM_Reference_Voltage_1_5(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a9_MCM_Reference_Voltage_2_5(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a9_MCM_Reference_Voltage_2_5(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a9_MCM_Reference_Voltage_5_0(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a9_MCM_Reference_Voltage_5_0(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0a9_MCM_Reference_Voltage_12_0(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0a9_MCM_Reference_Voltage_12_0(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x0aa_MCM_Int_VSM_State(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x0aa_MCM_Int_VSM_State(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x0aa_MCM_Int_Inverter_State(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Inverter_State(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Direction_Command(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Direction_Command(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Invert_Dischrg_State(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Invert_Dischrg_State(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Relay_1_Status(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Relay_1_Status(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Relay_2_Status(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Relay_2_Status(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Relay_3_Status(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Relay_3_Status(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Relay_4_Status(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Relay_4_Status(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Relay_5_Status(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Relay_5_Status(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Relay_6_Status(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Relay_6_Status(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Invert_Run_Mode(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Invert_Run_Mode(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Invert_Command_Mode(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Invert_Command_Mode(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Invert_Enable_State(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Invert_Enable_State(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0aa_MCM_Int_Invert_En_Lockout(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0aa_MCM_Int_Invert_En_Lockout(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x0ab_MCM_Post_Fault_Lo(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x0ab_MCM_Post_Fault_Lo(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x0ab_MCM_Post_Fault_Hi(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x0ab_MCM_Post_Fault_Hi(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x0ab_MCM_Run_Fault_Lo(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x0ab_MCM_Run_Fault_Lo(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x0ab_MCM_Run_Fault_Hi(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x0ab_MCM_Run_Fault_Hi(can_obj_all_sre_edited_h_t *o, uint16_t in);


int decode_can_0x0ac_MCM_Power_On_Timer(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0ac_MCM_Power_On_Timer(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0ac_MCM_Commanded_Torque(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0ac_MCM_Commanded_Torque(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0ac_MCM_Torque_Feedback(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0ac_MCM_Torque_Feedback(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x0ad_MCM_Modulation_Index(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0ad_MCM_Modulation_Index(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0ad_MCM_Flux_Weakening_Output(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0ad_MCM_Flux_Weakening_Output(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0ad_MCM_Id_Command(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0ad_MCM_Id_Command(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0ad_MCM_Iq_Command(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0ad_MCM_Iq_Command(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x0ae_MCM_Project_Code_EEP_Ver(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x0ae_MCM_Project_Code_EEP_Ver(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x0ae_MCM_SW_Version(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x0ae_MCM_SW_Version(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x0ae_MCM_DateCode_MMDD(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x0ae_MCM_DateCode_MMDD(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x0ae_MCM_DateCode_YYYY(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x0ae_MCM_DateCode_YYYY(can_obj_all_sre_edited_h_t *o, uint16_t in);


int decode_can_0x0af_MCM_Diag_Data_1(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x0af_MCM_Diag_Data_1(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x0af_MCM_Diag_Data_2(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x0af_MCM_Diag_Data_2(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x0af_MCM_Diag_Data_3(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x0af_MCM_Diag_Data_3(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x0af_MCM_Buffer_Record(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0af_MCM_Buffer_Record(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0af_MCM_Buffer_Segment(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0af_MCM_Buffer_Segment(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x0c0_MCM_Torque_Command(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0c0_MCM_Torque_Command(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0c0_MCM_Speed_Command(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x0c0_MCM_Speed_Command(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x0c0_MCM_Torque_Limit_Command(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x0c0_MCM_Torque_Limit_Command(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x0c0_MCM_RollingCounter(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0c0_MCM_RollingCounter(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0c0_MCM_Direction_Command(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0c0_MCM_Direction_Command(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0c0_MCM_Inverter_Enable(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0c0_MCM_Inverter_Enable(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0c0_MCM_Inverter_Discharge(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0c0_MCM_Inverter_Discharge(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x0c0_MCM_Speed_Mode_Enable(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0c0_MCM_Speed_Mode_Enable(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x0c1_MCM_Param_Address_Command(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x0c1_MCM_Param_Address_Command(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x0c1_MCM_Data_Command(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x0c1_MCM_Data_Command(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x0c1_MCM_Read_Write_Command(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0c1_MCM_Read_Write_Command(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x0c2_MCM_Param_Address_Response(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x0c2_MCM_Param_Address_Response(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x0c2_MCM_Data_Response(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x0c2_MCM_Data_Response(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x0c2_MCM_Write_Success(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x0c2_MCM_Write_Success(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x100_EMeter_Current(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x100_EMeter_Current(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x100_EMeter_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x100_EMeter_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x1d5_MCM_HV_Input_Current(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x1d5_MCM_HV_Input_Current(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x1d5_MCM_14V_Monitor(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x1d5_MCM_14V_Monitor(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x1d5_MCM_14V_Current_Monitor(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x1d5_MCM_14V_Current_Monitor(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x1d5_MCM_DTC_Index(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x1d5_MCM_DTC_Index(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x1d5_MCM_DTC_Status(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x1d5_MCM_DTC_Status(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x1d5_MCM_HV_In_Curr_Sens_Valid(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x1d5_MCM_HV_In_Curr_Sens_Valid(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x1d5_MCM_14V_Master_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x1d5_MCM_14V_Master_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x1d5_MCM_14V_Conditional(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x1d5_MCM_14V_Conditional(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x1d7_MCM_ID_Byte(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x1d7_MCM_ID_Byte(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x1d7_MCM_Setpoint_Calc(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x1d7_MCM_Setpoint_Calc(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x400_EMeter_VoltageGain(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x400_EMeter_VoltageGain(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x400_EMeter_CurrentGain(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x400_EMeter_CurrentGain(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x400_EMeter_OverVoltage(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x400_EMeter_OverVoltage(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x400_EMeter_OverPower(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x400_EMeter_OverPower(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x400_EMeter_Logging(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x400_EMeter_Logging(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x4b0_LF_Temperature_1(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b0_LF_Temperature_1(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b0_LF_Temperature_2(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b0_LF_Temperature_2(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b0_LF_Temperature_3(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b0_LF_Temperature_3(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b0_LF_Temperature_4(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b0_LF_Temperature_4(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4b1_LF_Temperature_5(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b1_LF_Temperature_5(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b1_LF_Temperature_6(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b1_LF_Temperature_6(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b1_LF_Temperature_7(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b1_LF_Temperature_7(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b1_LF_Temperature_8(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b1_LF_Temperature_8(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4b2_LF_Temperature_9(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b2_LF_Temperature_9(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b2_LF_Temperature_10(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b2_LF_Temperature_10(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b2_LF_Temperature_11(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b2_LF_Temperature_11(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b2_LF_Temperature_12(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b2_LF_Temperature_12(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4b3_LF_Temperature_13(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b3_LF_Temperature_13(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b3_LF_Temperature_14(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b3_LF_Temperature_14(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b3_LF_Temperature_15(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b3_LF_Temperature_15(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b3_LF_Temperature_16(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b3_LF_Temperature_16(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4b4_RF_Temperature_1(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b4_RF_Temperature_1(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b4_RF_Temperature_2(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b4_RF_Temperature_2(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b4_RF_Temperature_3(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b4_RF_Temperature_3(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b4_RF_Temperature_4(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b4_RF_Temperature_4(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4b5_RF_Temperature_5(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b5_RF_Temperature_5(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b5_RF_Temperature_6(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b5_RF_Temperature_6(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b5_RF_Temperature_7(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b5_RF_Temperature_7(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b5_RF_Temperature_8(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b5_RF_Temperature_8(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4b6_RF_Temperature_9(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b6_RF_Temperature_9(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b6_RF_Temperature_10(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b6_RF_Temperature_10(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b6_RF_Temperature_11(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b6_RF_Temperature_11(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b6_RF_Temperature_12(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b6_RF_Temperature_12(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4b7_RF_Temperature_13(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b7_RF_Temperature_13(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b7_RF_Temperature_14(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b7_RF_Temperature_14(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b7_RF_Temperature_15(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b7_RF_Temperature_15(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b7_RF_Temperature_16(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b7_RF_Temperature_16(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4b8_LR_Temperature_1(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b8_LR_Temperature_1(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b8_LR_Temperature_2(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b8_LR_Temperature_2(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b8_LR_Temperature_3(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b8_LR_Temperature_3(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b8_LR_Temperature_4(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b8_LR_Temperature_4(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4b9_LR_Temperature_5(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b9_LR_Temperature_5(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b9_LR_Temperature_6(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b9_LR_Temperature_6(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b9_LR_Temperature_7(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b9_LR_Temperature_7(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4b9_LR_Temperature_8(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4b9_LR_Temperature_8(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4ba_LR_Temperature_9(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4ba_LR_Temperature_9(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4ba_LR_Temperature_10(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4ba_LR_Temperature_10(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4ba_LR_Temperature_11(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4ba_LR_Temperature_11(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4ba_LR_Temperature_12(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4ba_LR_Temperature_12(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4bb_LR_Temperature_13(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bb_LR_Temperature_13(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bb_LR_Temperature_14(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bb_LR_Temperature_14(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bb_LR_Temperature_15(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bb_LR_Temperature_15(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bb_LR_Temperature_16(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bb_LR_Temperature_16(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4bc_RR_Temperature_1(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bc_RR_Temperature_1(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bc_RR_Temperature_2(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bc_RR_Temperature_2(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bc_RR_Temperature_3(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bc_RR_Temperature_3(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bc_RR_Temperature_4(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bc_RR_Temperature_4(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4bd_RR_Temperature_5(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bd_RR_Temperature_5(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bd_RR_Temperature_6(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bd_RR_Temperature_6(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bd_RR_Temperature_7(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bd_RR_Temperature_7(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bd_RR_Temperature_8(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bd_RR_Temperature_8(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4be_RR_Temperature_9(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4be_RR_Temperature_9(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4be_RR_Temperature_10(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4be_RR_Temperature_10(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4be_RR_Temperature_11(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4be_RR_Temperature_11(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4be_RR_Temperature_12(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4be_RR_Temperature_12(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x4bf_RR_Temperature_13(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bf_RR_Temperature_13(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bf_RR_Temperature_14(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bf_RR_Temperature_14(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bf_RR_Temperature_15(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bf_RR_Temperature_15(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x4bf_RR_Temperature_16(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x4bf_RR_Temperature_16(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x500_TPS0Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x500_TPS0Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x500_TPS0CalibMin(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x500_TPS0CalibMin(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x500_TPS0CalibMax(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x500_TPS0CalibMax(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x500_TPS0ThrottlePercent0FF(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x500_TPS0ThrottlePercent0FF(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x500_TPS0Percent0FF(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x500_TPS0Percent0FF(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x501_TPS1Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x501_TPS1Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x501_TPS1CalibMin(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x501_TPS1CalibMin(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x501_TPS1CalibMax(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x501_TPS1CalibMax(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x501_ThrottlePercent0FF(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x501_ThrottlePercent0FF(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x501_TPS1Percent0FF(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x501_TPS1Percent0FF(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x502_BPS0Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x502_BPS0Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x502_BPS0CalibMin(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x502_BPS0CalibMin(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x502_BPS0CalibMax(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x502_BPS0CalibMax(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x502_BrakePercent0FF(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x502_BrakePercent0FF(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x504_VCU_WSS_FL(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x504_VCU_WSS_FL(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x504_VCU_WSS_FR(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x504_VCU_WSS_FR(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x504_VCU_WSS_RL(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x504_VCU_WSS_RL(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x504_VCU_WSS_RR(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x504_VCU_WSS_RR(can_obj_all_sre_edited_h_t *o, uint16_t in);


int decode_can_0x505_VCU_WSS_FL_S(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x505_VCU_WSS_FL_S(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x505_VCU_WSS_FR_S(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x505_VCU_WSS_FR_S(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x505_VCU_WSS_RL_S(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x505_VCU_WSS_RL_S(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x505_VCU_WSS_RR_S(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x505_VCU_WSS_RR_S(can_obj_all_sre_edited_h_t *o, uint16_t in);


int decode_can_0x506_VCU_FAULT_TPS_OutOfRange(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_TPS_OutOfRange(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_FAULT_BPS_OutOfRange(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_BPS_OutOfRange(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_FAULT_TPS_PowerFailure(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_TPS_PowerFailure(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_FAULT_BPS_PowerFailure(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_BPS_PowerFailure(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_FAULT_TPS_SignalFailure(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_TPS_SignalFailure(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_FAULT_BPS_SignalFailure(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_BPS_SignalFailure(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_FAULT_TPS_NotCalibrated(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_TPS_NotCalibrated(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_FAULT_BPS_NotCalibrated(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_BPS_NotCalibrated(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_FAULT_TPS_OutOfSync(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_TPS_OutOfSync(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_FAULT_TPSBPS_Implausible(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_TPSBPS_Implausible(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_FAULT_BSPD_SoftFault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_BSPD_SoftFault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_FAULT_LVS_BatteryEmpty(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_FAULT_LVS_BatteryEmpty(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_WARNING_LVS_BatteryLow(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_WARNING_LVS_BatteryLow(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_WARNING_HVIL_OverrideEn(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_WARNING_HVIL_OverrideEn(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_WARNING_SAFETY_BypassEn(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_WARNING_SAFETY_BypassEn(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_NOTICE_HVIL_TermSenseLost(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_NOTICE_HVIL_TermSenseLost(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_NOTICE_BMS_Over75kW(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_NOTICE_BMS_Over75kW(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x506_VCU_NOTICE_MCM_Over75kW(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x506_VCU_NOTICE_MCM_Over75kW(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x507_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x507_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x508_VCU_MCM_RegenMode(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x508_VCU_MCM_RegenMode(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x508_VCU_MCM_MaxTorqueNm(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x508_VCU_MCM_MaxTorqueNm(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x508_VCU_MCM_RegenTorqueLimitNm(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x508_VCU_MCM_RegenTorqueLimitNm(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x508_VCU_MCM_RegenTorqueZeroPedal(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x508_VCU_MCM_RegenTorqueZeroPedal(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x508_VCU_MCM_RegenAPPSMaxCoasting(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x508_VCU_MCM_RegenAPPSMaxCoasting(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x508_VCU_MCM_RegenBPSMaxRegen(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x508_VCU_MCM_RegenBPSMaxRegen(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x509_HVIL_Active(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x509_HVIL_Active(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x509_MCM_Override_Enabled(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x509_MCM_Override_Enabled(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x50a_speedKph(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x50a_speedKph(can_obj_all_sre_edited_h_t *o, uint16_t in);


int decode_can_0x50c_TargetSlipRatio(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x50c_TargetSlipRatio(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x50c_Reserved_Debug_1(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x50c_Reserved_Debug_1(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x50c_Reserved_Debug_2(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x50c_Reserved_Debug_2(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x50c_Reserved_Debug_3(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x50c_Reserved_Debug_3(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x50c_Reserved_Debug_4(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x50c_Reserved_Debug_4(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x50d_BPS1Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x50d_BPS1Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x50e_VCU_BMS_HighestCellTemp(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x50e_VCU_BMS_HighestCellTemp(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x50e_VCU_BMS_FaultFlags0(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x50e_VCU_BMS_FaultFlags0(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x50e_VCU_BMS_FaultFlags1(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x50e_VCU_BMS_FaultFlags1(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x50e_VCU_BMS_ShutdownRelayState(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x50e_VCU_BMS_ShutdownRelayState(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x50e_VCU_BMS_GetPower(const can_obj_all_sre_edited_h_t *o, int8_t *out);
int encode_can_0x50e_VCU_BMS_GetPower(can_obj_all_sre_edited_h_t *o, int8_t in);
int decode_can_0x50e_VCU_BMS_GetCurrent(const can_obj_all_sre_edited_h_t *o, int8_t *out);
int encode_can_0x50e_VCU_BMS_GetCurrent(can_obj_all_sre_edited_h_t *o, int8_t in);


int decode_can_0x50f_VCU_BMS_HighestCellVoltage(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x50f_VCU_BMS_HighestCellVoltage(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x50f_VCU_BMS_LowestCellVoltage(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x50f_VCU_BMS_LowestCellVoltage(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x50f_VCU_BMS_HighestCellTemp_dC(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x50f_VCU_BMS_HighestCellTemp_dC(can_obj_all_sre_edited_h_t *o, int16_t in);


int decode_can_0x510_VCU_MCM_Power(const can_obj_all_sre_edited_h_t *o, uint32_t *out);
int encode_can_0x510_VCU_MCM_Power(can_obj_all_sre_edited_h_t *o, uint32_t in);
int decode_can_0x510_VCU_Safety_Checker_Notices(const can_obj_all_sre_edited_h_t *o, uint32_t *out);
int encode_can_0x510_VCU_Safety_Checker_Notices(can_obj_all_sre_edited_h_t *o, uint32_t in);


int decode_can_0x511_PL_Torque_Command(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x511_PL_Torque_Command(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x511_PL_PID_Output(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x511_PL_PID_Output(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x511_PL_Status(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x511_PL_Status(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x511_PL_Mode(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x511_PL_Mode(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x511_PL_Target_Power(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x511_PL_Target_Power(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x511_PL_Initialisation_Threshold(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x511_PL_Initialisation_Threshold(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x512_PL_PID_Proportional(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x512_PL_PID_Proportional(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x512_PL_PID_Integral(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x512_PL_PID_Integral(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x512_PL_PID_Derivative(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x512_PL_PID_Derivative(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x512_PL_PID_AntiWindupEnabled(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x512_PL_PID_AntiWindupEnabled(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x512_PL_PL_Mode(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x512_PL_PL_Mode(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x512_PL_PL_Status(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x512_PL_PL_Status(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x512_PL_PID_AntiWindupEnabled2(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x512_PL_PID_AntiWindupEnabled2(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x513_Velocity_Floor_RPM_Floor(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x513_Velocity_Floor_RPM_Floor(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x513_Velocity_Floor_RPM_Ceiling(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x513_Velocity_Floor_RPM_Ceiling(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x513_Velocity_Ceiling_RPM_Floor(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x513_Velocity_Ceiling_RPM_Floor(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x513_Velocity_Ceiling_RPM_Ceiling(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x513_Velocity_Ceiling_RPM_Ceiling(can_obj_all_sre_edited_h_t *o, uint16_t in);


int decode_can_0x514_PL_PID_TotalError(const can_obj_all_sre_edited_h_t *o, int32_t *out);
int encode_can_0x514_PL_PID_TotalError(can_obj_all_sre_edited_h_t *o, int32_t in);
int decode_can_0x514_PL_PID_Setpoint(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x514_PL_PID_Setpoint(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x514_PL_PID_Kp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x514_PL_PID_Kp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x514_PL_PID_Ki(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x514_PL_PID_Ki(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x515_Steering_Angle(const can_obj_all_sre_edited_h_t *o, int16_t *out);
int encode_can_0x515_Steering_Angle(can_obj_all_sre_edited_h_t *o, int16_t in);
int decode_can_0x515_DRS_Enable(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x515_DRS_Enable(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x515_DRS_Mode(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x515_DRS_Mode(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x515_flap_DRS(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x515_flap_DRS(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x5ff_HVIL_Enable(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x5ff_HVIL_Enable(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x5ff_Inverter_Enable(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x5ff_Inverter_Enable(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x600_BMS_State_Request(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x600_BMS_State_Request(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x600_BMS_Relay_Driver_1_Command(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x600_BMS_Relay_Driver_1_Command(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x600_BMS_Relay_Driver_2_Command(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x600_BMS_Relay_Driver_2_Command(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x600_BMS_Relay_Driver_3_Command(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x600_BMS_Relay_Driver_3_Command(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x600_BMS_Relay_Driver_4_Command(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x600_BMS_Relay_Driver_4_Command(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x600_BMS_Relay_Driver_5_Command(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x600_BMS_Relay_Driver_5_Command(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x600_BMS_Relay_Driver_6_Command(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x600_BMS_Relay_Driver_6_Command(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x602_BMS_Isolation_Leakage_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Isolation_Leakage_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Monitor_Communication_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Monitor_Communication_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Precharge_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Precharge_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Pack_Discharge_Envelope_Exceeded_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Pack_Discharge_Envelope_Exceeded_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Pack_Charge_Envelope_Exceeded_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Pack_Charge_Envelope_Exceeded_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Failed_Thermistor_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Failed_Thermistor_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Cell_Over_Voltage_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Cell_Over_Voltage_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Cell_Under_Voltage_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Cell_Under_Voltage_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Cell_Over_Temperature_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Cell_Over_Temperature_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Cell_Under_Temperature_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Cell_Under_Temperature_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Pack_Over_Voltage_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Pack_Over_Voltage_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Pack_Under_Voltage_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Pack_Under_Voltage_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Over_Current_Discharge_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Over_Current_Discharge_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Over_Current_Charge_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Over_Current_Charge_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x602_BMS_Imminent_Contactor_Opening_Warning(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x602_BMS_Imminent_Contactor_Opening_Warning(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x604_BMS_Cell_Under_Voltage_Warning(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x604_BMS_Cell_Under_Voltage_Warning(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x604_BMS_Cell_Over_TemperatureWarning(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x604_BMS_Cell_Over_TemperatureWarning(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x604_BMS_Cell_Under_Temperature_Warning(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x604_BMS_Cell_Under_Temperature_Warning(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x604_BMS_Cell_Under_Temperature_Fault(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x604_BMS_Cell_Under_Temperature_Fault(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x604_BMS_Pack_Over_Voltage_Warning(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x604_BMS_Pack_Over_Voltage_Warning(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x604_BMS_Pack_Under_Voltage_Warning(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x604_BMS_Pack_Under_Voltage_Warning(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x604_BMS_Over_Current_Discharge_Warning(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x604_BMS_Over_Current_Discharge_Warning(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x604_BMS_Over_Current_Charge_Warning(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x604_BMS_Over_Current_Charge_Warning(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x604_BMS_Cell_Over_Voltage_Warning(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x604_BMS_Cell_Over_Voltage_Warning(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x610_BMS_Number_Of_Failed_Thermistors(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Number_Of_Failed_Thermistors(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Number_Monitors_Detected(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Number_Monitors_Detected(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Current_State(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Current_State(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Monitor_Power_Active(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Monitor_Power_Active(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Cell_Balancing_Active(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Cell_Balancing_Active(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Precharge_Relay_Closed(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Precharge_Relay_Closed(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Main_Contactor_Positive_Closed(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Main_Contactor_Positive_Closed(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Main_Contactor_Negative_Closed(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Main_Contactor_Negative_Closed(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_HVIL_Present(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_HVIL_Present(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Incorrect_Number_Monitor_Boards(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Incorrect_Number_Monitor_Boards(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Incompatible_Monitor_Firmware(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Incompatible_Monitor_Firmware(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Loss_Of_All_Monitor_Communication(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Loss_Of_All_Monitor_Communication(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Monitor_Address_Conflict(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Monitor_Address_Conflict(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x610_BMS_Unexpected_Monitor_Address(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x610_BMS_Unexpected_Monitor_Address(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x611_BMS_Maximum_Charge_Current_Allowed(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x611_BMS_Maximum_Charge_Current_Allowed(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x611_BMS_Maximum_Discharge_Current_Allowed(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x611_BMS_Maximum_Discharge_Current_Allowed(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x611_BMS_Charger_Constant_Voltage_Setpoint(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x611_BMS_Charger_Constant_Voltage_Setpoint(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x612_BMS_Internal_5V_Rail_Sense(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x612_BMS_Internal_5V_Rail_Sense(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x612_BMS_HVIL_Power_Input_Sense(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x612_BMS_HVIL_Power_Input_Sense(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x612_BMS_Power_Input_Sense(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x612_BMS_Power_Input_Sense(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x612_BMS_Master_Board_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x612_BMS_Master_Board_Temperature(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x620_BMS_Pack_Current(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x620_BMS_Pack_Current(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x620_BMS_Pack_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x620_BMS_Pack_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x621_BMS_Amp_Hours_Remaining(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x621_BMS_Amp_Hours_Remaining(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x621_BMS_State_Of_Health(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x621_BMS_State_Of_Health(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x621_BMS_State_Of_Charge(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x621_BMS_State_Of_Charge(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x622_BMS_Lowest_Cell_Voltage_Position(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x622_BMS_Lowest_Cell_Voltage_Position(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x622_BMS_Highest_Cell_Voltage_Position(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x622_BMS_Highest_Cell_Voltage_Position(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x622_BMS_Lowest_Cell_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x622_BMS_Lowest_Cell_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x622_BMS_Highest_Cell_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x622_BMS_Highest_Cell_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x623_BMS_Lowest_Cell_Temperature_Position(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x623_BMS_Lowest_Cell_Temperature_Position(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x623_BMS_Highest_Cell_Temperature_Position(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x623_BMS_Highest_Cell_Temperature_Position(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x623_BMS_Lowest_Cell_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x623_BMS_Lowest_Cell_Temperature(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x623_BMS_Highest_Cell_Temperature(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x623_BMS_Highest_Cell_Temperature(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x624_BMS_Precharge_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x624_BMS_Precharge_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x624_BMS_Sum_Of_Cells_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x624_BMS_Sum_Of_Cells_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x630_BMS_Cell_4_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x630_BMS_Cell_4_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x630_BMS_Cell_3_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x630_BMS_Cell_3_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x630_BMS_Cell_2_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x630_BMS_Cell_2_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x630_BMS_Cell_1_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x630_BMS_Cell_1_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x631_BMS_Cell_8_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x631_BMS_Cell_8_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x631_BMS_Cell_7_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x631_BMS_Cell_7_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x631_BMS_Cell_6_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x631_BMS_Cell_6_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x631_BMS_Cell_5_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x631_BMS_Cell_5_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x632_BMS_Cell_12_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x632_BMS_Cell_12_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x632_BMS_Cell_11_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x632_BMS_Cell_11_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x632_BMS_Cell_10_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x632_BMS_Cell_10_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x632_BMS_Cell_9_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x632_BMS_Cell_9_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x633_BMS_Cell_4_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x633_BMS_Cell_4_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x633_BMS_Cell_3_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x633_BMS_Cell_3_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x633_BMS_Cell_2_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x633_BMS_Cell_2_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x633_BMS_Cell_1_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x633_BMS_Cell_1_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x634_BMS_Cell_8_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x634_BMS_Cell_8_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x634_BMS_Cell_7_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x634_BMS_Cell_7_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x634_BMS_Cell_6_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x634_BMS_Cell_6_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x634_BMS_Cell_5_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x634_BMS_Cell_5_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x635_BMS_Cell_12_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x635_BMS_Cell_12_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x635_BMS_Cell_11_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x635_BMS_Cell_11_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x635_BMS_Cell_10_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x635_BMS_Cell_10_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x635_BMS_Cell_9_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x635_BMS_Cell_9_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x636_BMS_Cell_4_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x636_BMS_Cell_4_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x636_BMS_Cell_3_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x636_BMS_Cell_3_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x636_BMS_Cell_2_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x636_BMS_Cell_2_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x636_BMS_Cell_1_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x636_BMS_Cell_1_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x637_BMS_Cell_8_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x637_BMS_Cell_8_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x637_BMS_Cell_7_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x637_BMS_Cell_7_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x637_BMS_Cell_6_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x637_BMS_Cell_6_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x637_BMS_Cell_5_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x637_BMS_Cell_5_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x638_BMS_Cell_12_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x638_BMS_Cell_12_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x638_BMS_Cell_11_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x638_BMS_Cell_11_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x638_BMS_Cell_10_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x638_BMS_Cell_10_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x638_BMS_Cell_9_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x638_BMS_Cell_9_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x639_BMS_Cell_4_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x639_BMS_Cell_4_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x639_BMS_Cell_3_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x639_BMS_Cell_3_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x639_BMS_Cell_2_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x639_BMS_Cell_2_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x639_BMS_Cell_1_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x639_BMS_Cell_1_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x63a_BMS_Cell_8_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63a_BMS_Cell_8_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63a_BMS_Cell_7_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63a_BMS_Cell_7_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63a_BMS_Cell_6_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63a_BMS_Cell_6_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63a_BMS_Cell_5_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63a_BMS_Cell_5_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x63b_BMS_Cell_12_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63b_BMS_Cell_12_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63b_BMS_Cell_11_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63b_BMS_Cell_11_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63b_BMS_Cell_10_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63b_BMS_Cell_10_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63b_BMS_Cell_9_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63b_BMS_Cell_9_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x63c_BMS_Cell_4_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63c_BMS_Cell_4_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63c_BMS_Cell_3_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63c_BMS_Cell_3_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63c_BMS_Cell_2_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63c_BMS_Cell_2_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63c_BMS_Cell_1_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63c_BMS_Cell_1_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x63d_BMS_Cell_8_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63d_BMS_Cell_8_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63d_BMS_Cell_7_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63d_BMS_Cell_7_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63d_BMS_Cell_6_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63d_BMS_Cell_6_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63d_BMS_Cell_5_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63d_BMS_Cell_5_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x63e_BMS_Cell_12_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63e_BMS_Cell_12_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63e_BMS_Cell_11_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63e_BMS_Cell_11_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63e_BMS_Cell_10_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63e_BMS_Cell_10_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63e_BMS_Cell_9_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63e_BMS_Cell_9_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x63f_BMS_Cell_4_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63f_BMS_Cell_4_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63f_BMS_Cell_3_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63f_BMS_Cell_3_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63f_BMS_Cell_2_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63f_BMS_Cell_2_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x63f_BMS_Cell_1_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x63f_BMS_Cell_1_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x640_BMS_Cell_8_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x640_BMS_Cell_8_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x640_BMS_Cell_7_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x640_BMS_Cell_7_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x640_BMS_Cell_6_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x640_BMS_Cell_6_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x640_BMS_Cell_5_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x640_BMS_Cell_5_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x641_BMS_Cell_12_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x641_BMS_Cell_12_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x641_BMS_Cell_11_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x641_BMS_Cell_11_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x641_BMS_Cell_10_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x641_BMS_Cell_10_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x641_BMS_Cell_9_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x641_BMS_Cell_9_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x642_BMS_Cell_4_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x642_BMS_Cell_4_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x642_BMS_Cell_3_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x642_BMS_Cell_3_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x642_BMS_Cell_2_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x642_BMS_Cell_2_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x642_BMS_Cell_1_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x642_BMS_Cell_1_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x643_BMS_Cell_8_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x643_BMS_Cell_8_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x643_BMS_Cell_7_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x643_BMS_Cell_7_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x643_BMS_Cell_6_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x643_BMS_Cell_6_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x643_BMS_Cell_5_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x643_BMS_Cell_5_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x644_BMS_Cell_12_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x644_BMS_Cell_12_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x644_BMS_Cell_11_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x644_BMS_Cell_11_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x644_BMS_Cell_10_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x644_BMS_Cell_10_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x644_BMS_Cell_9_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x644_BMS_Cell_9_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x645_BMS_Cell_4_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x645_BMS_Cell_4_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x645_BMS_Cell_3_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x645_BMS_Cell_3_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x645_BMS_Cell_2_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x645_BMS_Cell_2_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x645_BMS_Cell_1_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x645_BMS_Cell_1_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x646_BMS_Cell_8_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x646_BMS_Cell_8_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x646_BMS_Cell_7_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x646_BMS_Cell_7_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x646_BMS_Cell_6_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x646_BMS_Cell_6_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x646_BMS_Cell_5_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x646_BMS_Cell_5_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x647_BMS_Cell_12_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x647_BMS_Cell_12_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x647_BMS_Cell_11_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x647_BMS_Cell_11_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x647_BMS_Cell_10_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x647_BMS_Cell_10_Voltage(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x647_BMS_Cell_9_Voltage(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x647_BMS_Cell_9_Voltage(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x680_BMS_Section_4_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x680_BMS_Section_4_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x680_BMS_Section_3_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x680_BMS_Section_3_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x680_BMS_Section_2_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x680_BMS_Section_2_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x680_BMS_Section_1_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x680_BMS_Section_1_Temp(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x683_BMS_Section_4_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x683_BMS_Section_4_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x683_BMS_Section_3_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x683_BMS_Section_3_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x683_BMS_Section_2_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x683_BMS_Section_2_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x683_BMS_Section_1_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x683_BMS_Section_1_Temp(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x686_BMS_Section_4_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x686_BMS_Section_4_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x686_BMS_Section_3_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x686_BMS_Section_3_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x686_BMS_Section_2_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x686_BMS_Section_2_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x686_BMS_Section_1_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x686_BMS_Section_1_Temp(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x689_BMS_Section_4_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x689_BMS_Section_4_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x689_BMS_Section_3_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x689_BMS_Section_3_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x689_BMS_Section_2_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x689_BMS_Section_2_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x689_BMS_Section_1_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x689_BMS_Section_1_Temp(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x68c_BMS_Section_4_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x68c_BMS_Section_4_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x68c_BMS_Section_3_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x68c_BMS_Section_3_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x68c_BMS_Section_2_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x68c_BMS_Section_2_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x68c_BMS_Section_1_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x68c_BMS_Section_1_Temp(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x68f_BMS_Section_4_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x68f_BMS_Section_4_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x68f_BMS_Section_3_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x68f_BMS_Section_3_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x68f_BMS_Section_2_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x68f_BMS_Section_2_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x68f_BMS_Section_1_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x68f_BMS_Section_1_Temp(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x692_BMS_Section_4_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x692_BMS_Section_4_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x692_BMS_Section_3_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x692_BMS_Section_3_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x692_BMS_Section_2_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x692_BMS_Section_2_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x692_BMS_Section_1_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x692_BMS_Section_1_Temp(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x695_BMS_Section_4_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x695_BMS_Section_4_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x695_BMS_Section_3_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x695_BMS_Section_3_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x695_BMS_Section_2_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x695_BMS_Section_2_Temp(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x695_BMS_Section_1_Temp(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x695_BMS_Section_1_Temp(can_obj_all_sre_edited_h_t *o, double in);


int decode_can_0x6fc_BMS_Number_Of_Thermistors_Configured(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x6fc_BMS_Number_Of_Thermistors_Configured(can_obj_all_sre_edited_h_t *o, uint16_t in);
int decode_can_0x6fc_BMS_Number_Of_Cells_Configured(const can_obj_all_sre_edited_h_t *o, uint16_t *out);
int encode_can_0x6fc_BMS_Number_Of_Cells_Configured(can_obj_all_sre_edited_h_t *o, uint16_t in);


int decode_can_0x6fe_BMS_Revision_Number(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x6fe_BMS_Revision_Number(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x6fe_BMS_Minor_Version_Number(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x6fe_BMS_Minor_Version_Number(can_obj_all_sre_edited_h_t *o, uint8_t in);
int decode_can_0x6fe_BMS_Major_Version_Number(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x6fe_BMS_Major_Version_Number(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x702_RegenMode(const can_obj_all_sre_edited_h_t *o, uint8_t *out);
int encode_can_0x702_RegenMode(can_obj_all_sre_edited_h_t *o, uint8_t in);


int decode_can_0x710_Wind_Speed(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x710_Wind_Speed(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x710_Pitot_Tube1(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x710_Pitot_Tube1(can_obj_all_sre_edited_h_t *o, double in);
int decode_can_0x710_Pitot_Tube2(const can_obj_all_sre_edited_h_t *o, double *out);
int encode_can_0x710_Pitot_Tube2(can_obj_all_sre_edited_h_t *o, double in);


#ifdef __cplusplus
} 
#endif

#endif