Initial public release.

This commit is contained in:
Joe Kearney 2025-02-01 19:22:12 -06:00
parent 7b169e8116
commit dac4af8d25
255 changed files with 68595 additions and 2 deletions

View 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