Skip to content

Commit

Permalink
VW MQBevo: Initial DBC (#906)
Browse files Browse the repository at this point in the history
* VW MQBevo: Initial DBC

* endianness fixes

* enable opendbc checksum/counter handling

* tweak signal width

* updates

* ACC set speed
  • Loading branch information
jyoung8607 authored Oct 1, 2024
1 parent 7b63ff2 commit ba1499c
Show file tree
Hide file tree
Showing 2 changed files with 1,613 additions and 1 deletion.
2 changes: 1 addition & 1 deletion opendbc/can/dbc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ChecksumState* get_checksum(const std::string& dbc_name) {
s = new ChecksumState({8, -1, 7, -1, false, TOYOTA_CHECKSUM, &toyota_checksum});
} else if (startswith(dbc_name, "hyundai_canfd")) {
s = new ChecksumState({16, -1, 0, -1, true, HKG_CAN_FD_CHECKSUM, &hkg_can_fd_checksum});
} else if (startswith(dbc_name, "vw_mqb_2010")) {
} else if (startswith(dbc_name, {"vw_mqb_2010", "vw_mqbevo"})) {
s = new ChecksumState({8, 4, 0, 0, true, VOLKSWAGEN_MQB_CHECKSUM, &volkswagen_mqb_checksum});
} else if (startswith(dbc_name, "vw_golf_mk4")) {
s = new ChecksumState({8, 4, 0, -1, true, XOR_CHECKSUM, &xor_checksum});
Expand Down
Loading

0 comments on commit ba1499c

Please sign in to comment.