31 lines
617 B
C
31 lines
617 B
C
/**
|
|
* @ingroup can
|
|
* @defgroup can_str String dictionary
|
|
* @brief DI CAN messaging strings
|
|
* @date Feb 10, 2016
|
|
* @author jjacobs
|
|
* @copyright 2016 Dual Inventive Technology Centre B.V.
|
|
*
|
|
* DI CAN messaging string conversions
|
|
* @{
|
|
*/
|
|
#ifndef LIBDI_INCLUDE_DI_CAN_LOG_H_
|
|
#define LIBDI_INCLUDE_DI_CAN_LOG_H_
|
|
|
|
#include <di/log.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void di_can_log_writer(const struct di_log_msg *msg, void *private_data);
|
|
void di_can_log_writer_loopback(const struct di_log_msg *msg, void *private_data);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|
|
|
|
#endif /* LIBDI_INCLUDE_DI_CAN_LOG_H_ */
|