INFM HIL Interface
Interface between Artery simulation and DuTs
Dummy_CANFD_Config.h
1/*******************************************************************************
2 \project INFM_HIL_Interface
3 \file Dummy_CANFD_Config.h
4 \brief Defines the adjustable communication parameters.
5 \author Matthias Bank
6 \version 1.0.0
7 \date 24.10.2021
8 ******************************************************************************/
9#ifndef DUMMY_CANFD_CONFIG_H
10#define DUMMY_CANFD_CONFIG_H
11
12
13/*******************************************************************************
14 * DEFINES
15 ******************************************************************************/
16#define FRAMEID 0x222 // The changed ID of the frames we are sending back
17
18#define CANFD 0 // Flag for enabling CANFD
19#define INTERFACE "vcan0" // The name of the interface that should be configured
20
21#define VERBOSE 1 // Enables printing information during the recv-send loop
22
23
24#endif //DUMMY_CANFD_CONFIG_H
25
26
27/*******************************************************************************
28 * END OF FILE
29 ******************************************************************************/