41 lines
769 B
C
41 lines
769 B
C
/** \dir UTIL
|
|
*
|
|
* \brief Utility Software
|
|
*
|
|
* This directory/namespace contains miscellaneous utility functions.
|
|
*
|
|
*/
|
|
|
|
/** \file
|
|
* \brief This file defines the interface to the UTIL package used by this software.
|
|
*
|
|
* This file should be included by any file outside the UTIL package wishing to make use
|
|
* of any of the UTIL functionality.
|
|
*
|
|
* \note As always, <project.h> and <CONFIG.h> should be included <I>before</I> this file.
|
|
*/
|
|
|
|
#ifndef UTIL_H
|
|
#define UTIL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Preprocessor and Type Definitions */
|
|
#define STR_HELPER(x) #x
|
|
#define STR(x) STR_HELPER(x)
|
|
|
|
/* Include Files */
|
|
#include "UTIL_CircularBuffer.h"
|
|
|
|
/* Public Variables */
|
|
|
|
/* Public Functions */
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // UTIL_H
|