can: glut MS Simplified Dash Broadcast
This commit is contained in:
parent
c2878d519e
commit
c07010b70a
|
@ -11,6 +11,7 @@
|
|||
|
||||
#if EFI_CAN_SUPPORT
|
||||
#include "can_dash.h"
|
||||
#include "can_dash_ms.h"
|
||||
#include "can_msg_tx.h"
|
||||
#include "can_bmw.h"
|
||||
#include "can_vag.h"
|
||||
|
@ -169,6 +170,9 @@ void updateDash(CanCycle cycle) {
|
|||
case CAN_AIM_DASH:
|
||||
canDashboardAim(cycle);
|
||||
break;
|
||||
case CAN_BUS_MS_SIMPLE_BROADCAST:
|
||||
canDashboardTS(cycle);
|
||||
break;
|
||||
default:
|
||||
firmwareError(ObdCode::OBD_PCM_Processor_Fault, "Nothing for canNbcType %s", getCan_nbc_e(engineConfiguration->canNbcType));
|
||||
break;
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "pch.h"
|
||||
#include "can.h"
|
||||
|
||||
void canDashboardTS(CanCycle cycle);
|
Loading…
Reference in New Issue