27 lines
461 B
C
27 lines
461 B
C
/** \file
|
|
* \brief Utility functions used by the communications package.
|
|
*
|
|
* \note As always, <project.h> and <RTOS.h> should be included <I>before</I> this file.
|
|
*/
|
|
|
|
#ifndef COMM_UTIL_H
|
|
#define COMM_UTIL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Include Files */
|
|
|
|
/* Preprocessor and Type Definitions */
|
|
|
|
/* Public Variables */
|
|
|
|
/* Public Functions */
|
|
char8 * COMM_UInt64ToDecimal(uint64_t value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // COMM_UTIL_H
|