28 lines
427 B
C
28 lines
427 B
C
/**
|
|
* @file can_hw.h
|
|
*
|
|
* @date Dec 11, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "efifeatures.h"
|
|
|
|
void initCan();
|
|
void setCanType(int type);
|
|
void setCanVss(int type);
|
|
|
|
#if EFI_CAN_SUPPORT
|
|
|
|
void stopCanPins();
|
|
void startCanPins();
|
|
void enableFrankensoCan();
|
|
bool getIsCanEnabled(void);
|
|
|
|
#if EFI_TUNER_STUDIO
|
|
void postCanState();
|
|
#endif /* EFI_TUNER_STUDIO */
|
|
|
|
#endif /* EFI_CAN_SUPPORT */
|