Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VW MLB: Audi A4/S4 #1289

Draft
wants to merge 42 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
f3e49e8
VW MLB: Audi A4/S4
jyoung8607 Mar 15, 2023
bb9cd1e
bump opendbc ref
jyoung8607 Mar 15, 2023
243dfcc
sort message defines
jyoung8607 Mar 16, 2023
aea8755
mxb -> mlb_mqb
jyoung8607 Mar 16, 2023
91cf9bb
common driver torque and brake pressure functions
jyoung8607 Mar 16, 2023
18ff1d5
hax?
jyoung8607 Mar 16, 2023
4f1552a
a little bit of MISRA in my life
jyoung8607 Mar 16, 2023
274d5ad
enable counters across the board
jyoung8607 Mar 17, 2023
0b182ba
MISRA do u like me? yes/no
jyoung8607 Mar 17, 2023
c45c08d
more CI time
jyoung8607 Mar 17, 2023
e5449f1
adjust ramp rates and driver torque allowance
jyoung8607 Mar 17, 2023
fe4e61a
revert to int
jyoung8607 Mar 17, 2023
0e47ef9
enable CRC on LH_EPS_03
jyoung8607 Mar 17, 2023
ea5e153
MISRA why you gotta do me like that?
jyoung8607 Mar 17, 2023
9053201
Revert "MISRA why you gotta do me like that?"
jyoung8607 Mar 17, 2023
d3895d1
wider operand first, skip unnecessary masking
jyoung8607 Mar 17, 2023
165fe78
oh it's like that?
jyoung8607 Mar 17, 2023
371bc82
this is some bullshit
jyoung8607 Mar 17, 2023
b0e1aea
refactor common functions
jyoung8607 Mar 17, 2023
8ff4fc0
cleanup complex GET_BYTE -> GET_BIT
jyoung8607 Mar 17, 2023
33827d0
fine, be that way
jyoung8607 Mar 17, 2023
7c3b78d
Merge branch 'master' of https://github.com/commaai/panda into vw-mlb
jyoung8607 Mar 19, 2023
f25f2bd
Merge branch 'master' into vw-mlb
jyoung8607 Feb 12, 2024
525e3e9
initial refactor, passing tests
jyoung8607 Feb 13, 2024
02b4fed
chmod +x test_volkswagen_mlb.py
jyoung8607 Feb 13, 2024
0c61b3e
temporary Dockerfile tweaks for CI
jyoung8607 Feb 13, 2024
1fb9a9c
propitiate linter
jyoung8607 Feb 13, 2024
4480ba8
it's like that
jyoung8607 Feb 13, 2024
07e9f61
Revert "update cppcheck (#1859)"
jyoung8607 Feb 13, 2024
bf18c90
follow test refactoring
jyoung8607 Feb 13, 2024
5570058
additional test fixes
jyoung8607 Feb 13, 2024
57f4174
goodbye switch :(
jyoung8607 Feb 13, 2024
8ccfda4
Merge branch 'master' into vw-mlb
jyoung8607 Feb 18, 2024
3754d5c
Revert "Revert "update cppcheck (#1859)""
jyoung8607 Feb 18, 2024
abe61b2
garbage-collect that
jyoung8607 Feb 18, 2024
3680100
merge fixups
jyoung8607 Feb 18, 2024
9fd36f2
Merge branch 'master' of https://github.com/commaai/panda into vw-mlb
jyoung8607 Mar 3, 2024
27ea005
Merge branch 'master' of https://github.com/commaai/panda into vw-mlb
jyoung8607 Mar 23, 2024
23805ff
Merge branch 'master' of https://github.com/commaai/panda into vw-mlb
jyoung8607 May 20, 2024
af75d0b
oops
jyoung8607 May 20, 2024
82c3940
whatevs
jyoung8607 May 20, 2024
7a92a86
follow HCA_01 signal refactor
jyoung8607 May 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
it's like that
  • Loading branch information
jyoung8607 committed Feb 13, 2024
commit 4480ba8ab3009f4dc8e75a4941789026d1173020
2 changes: 1 addition & 1 deletion tests/safety/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ def test_tx_hook_on_wrong_safety_mode(self):
continue
if attr.startswith('TestHyundaiCanfd') and current_test.startswith('TestHyundaiCanfd'):
continue
volkswagen_shared = ('TestVolkswagenMQB', 'TestVolkswagenMLB')
volkswagen_shared = ('TestVolkswagenMqb', 'TestVolkswagenMlb')
if attr.startswith(volkswagen_shared) and current_test.startswith(volkswagen_shared):
continue

Expand Down
Loading