Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions components/can/include/CAN.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
#include <stdint.h>
#include "CAN_config.h"

#ifdef __cplusplus
extern "C" {
#endif

/**
* \brief CAN frame type (standard/extended)
*/
Expand Down Expand Up @@ -93,4 +97,8 @@ int CAN_write_frame(const CAN_frame_t* p_frame);
*/
int CAN_stop(void);

#ifdef __cplusplus
}
#endif

#endif