34 lines
685 B
C
34 lines
685 B
C
/*
|
|
* co_candebug.h - contains defines for can debug
|
|
*
|
|
* Copyright (c) 2012-2023 emotas embedded communication GmbH
|
|
*
|
|
*-------------------------------------------------------------------
|
|
* $Id: co_candebug.h 48619 2023-08-28 14:17:41Z boe $
|
|
*-------------------------------------------------------------------
|
|
*
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* \brief defines for can debug
|
|
*
|
|
* \file co_candebug.h - contains defines for can debug services
|
|
*
|
|
*/
|
|
|
|
#ifndef CO_CAN_DEBUG_H
|
|
#define CO_CAN_DEBUG_H 1
|
|
|
|
#include <co_datatype.h>
|
|
|
|
|
|
/* constant */
|
|
|
|
/* function prototypes */
|
|
EXTERN_DECL RET_T coCanDebugPrint(CO_LINE_DECL, UNSIGNED32 canId,
|
|
UNSIGNED8 dataLen, const UNSIGNED8 *pData);
|
|
|
|
|
|
#endif /* CO_CAN_DEBUG_H */
|