efdd4655a3
* Use default include * Add conversions * Add TryReceive
21 lines
357 B
C
21 lines
357 B
C
/**
|
|
* @file mmr_can_includes.h
|
|
* @brief
|
|
* This header contains the include macros
|
|
* related to the external can_bus drivers.
|
|
*
|
|
* These may be changed based on the board that is
|
|
* being used.
|
|
*/
|
|
|
|
#ifndef INC_MMR_CAN_INCLUDES_H_
|
|
#define INC_MMR_CAN_INCLUDES_H_
|
|
|
|
#include "main.h"
|
|
|
|
#ifndef CAN
|
|
#define CAN
|
|
#endif
|
|
|
|
#endif /* INC_MMR_CAN_INCLUDES_H_ */
|