Change BMW E46 CAN interval to 10 ms (#7078)

Fix for #6974
This commit is contained in:
jankovalski 2024-11-16 23:38:49 +01:00 committed by GitHub
parent 9735e48c8b
commit 8e8a69aa1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ void canDashboardHaltech(CanCycle cycle);
//todo: we use 50ms fixed cycle, trace is needed to check for correct period
static void canDashboardBmwE46(CanCycle cycle) {
if (cycle.isInterval(CI::_50ms)) {
if (cycle.isInterval(CI::_10ms)) {
{
CanTxMessage msg(CanCategory::NBC, CAN_BMW_E46_SPEED);
msg.setShortValue(10 * 8, 1);