rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
can_hw.h
Go to the documentation of this file.
1/**
2 * @file can_hw.h
3 *
4 * @date Dec 11, 2013
5 * @author Andrey Belomutskiy, (c) 2012-2020
6 */
7
8#pragma once
9
10#include "efifeatures.h"
11
12void initCan();
13void setCanType(int type);
14void setCanVss(int type);
15
16#if EFI_CAN_SUPPORT
17
18void stopCanPins();
19void startCanPins();
20bool getIsCanEnabled(void);
21
22#endif /* EFI_CAN_SUPPORT */
void stopCanPins()
Definition can_hw.cpp:114
bool getIsCanEnabled(void)
Definition can_hw.cpp:223
void initCan()
Definition can_hw.cpp:166
void setCanVss(int type)
Definition can_vss.cpp:221
void startCanPins()
Definition can_hw.cpp:122
void setCanType(int type)
Definition can_hw.cpp:109