Initial public release.
This commit is contained in:
parent
7b169e8116
commit
dac4af8d25
255 changed files with 68595 additions and 2 deletions
41
2020TPCApp1.cydsn/UTIL/UTIL.h
Normal file
41
2020TPCApp1.cydsn/UTIL/UTIL.h
Normal file
|
@ -0,0 +1,41 @@
|
|||
/** \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
|
Loading…
Add table
Add a link
Reference in a new issue