Index: Utilities.h =================================================================== diff -u -r527e5b84c94f89391b3c9023066f5a1bda270afc -r569a9f44c93e6489f1dc1a62a7937e100ea344c2 --- Utilities.h (.../Utilities.h) (revision 527e5b84c94f89391b3c9023066f5a1bda270afc) +++ Utilities.h (.../Utilities.h) (revision 569a9f44c93e6489f1dc1a62a7937e100ea344c2) @@ -29,7 +29,7 @@ // ********** public definitions ********** // ******* Time Windowed Count Definitions ********* -#define MAX_TIME_WINDOWED_COUNT 5 ///< Maximum # of counts that a time windowed count can count to. +#define MAX_TIME_WINDOWED_COUNT 5 ///< Maximum # of counts that a time windowed count can count to. /// Enumeration of time-windowed counts. typedef enum TimeWindowedCounts @@ -54,16 +54,16 @@ /// Critical data types list. typedef enum Critical_Data_Types { - CRITICAL_DATA_TYPE_U32 = 0, ///< Critical data is unsigned 32-bit integer type - CRITICAL_DATA_TYPE_F32, ///< Critical data is 32-bit floating point type - NUM_OF_CRITICAL_DATA_TYPES ///< Total number of critical data types. + CRITICAL_DATA_TYPE_U32 = 0, ///< Critical data is unsigned 32-bit integer type + CRITICAL_DATA_TYPE_F32, ///< Critical data is 32-bit floating point type + NUM_OF_CRITICAL_DATA_TYPES ///< Total number of critical data types. } CRITICAL_DATA_TYPES_T; /// Record structure for alarm data of any supported type. typedef union { - U32 uInt; ///< critical data of unsigned integer type. - F32 flt; ///< critical data of floating point type. + U32 uInt; ///< critical data of unsigned integer type. + F32 flt; ///< critical data of floating point type. } CRITICAL_DATAS_T; /// critical integer data structure.