33 lines
681 B
C
33 lines
681 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_STR_H_
|
|
#define LIBDI_INCLUDE_DI_CAN_STR_H_
|
|
|
|
#include <di/can/ptypes.h>
|
|
#include <di/can/defines.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const char *di_can_msgtype_str(enum di_can_msgtype msgtype);
|
|
const char *di_can_transfertype_str(enum di_can_transfertype ttype);
|
|
const char *di_can_ptype_str(enum di_can_ptypes ptype);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|
|
|
|
#endif /* LIBDI_INCLUDE_DI_CAN_STR_H_ */
|