-
Notifications
You must be signed in to change notification settings - Fork 320
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
Update ATS9440.py to fix the 'ABCD' value mapping #3802
Conversation
'ABCD' value mapping should be the bitwise or of 0x00000001 | 0x00000002 | 0x00000004 | 0x00000008, which is 15
Codecov Report
@@ Coverage Diff @@
## master #3802 +/- ##
=======================================
Coverage 65.72% 65.72%
=======================================
Files 226 226
Lines 30528 30528
=======================================
Hits 20064 20064
Misses 10464 10464 |
A = 0x00000001 B = 0x00000002 C = 0x00000004 D = 0x00000008 A | B = 3 A | C = 5 B | C = 6 A | D = 9 B | D = 10 C | D = 12
@gdeboo Thanks for the fix. Could you add a changelog entry as described in the pr template ?
This file should be in the format number.categoryofcontribution. Here the number should either be the number |
bors merge |
👎 Rejected by too few approved reviews |
bors merge |
'ABCD' value mapping should be the bitwise or of 0x00000001 | 0x00000002 | 0x00000004 | 0x00000008, which is 15