Index: Utilities.h =================================================================== diff -u -rb20ab0cdf009f97c0aff428219e901b0603e3fd2 -r47f8ae76f4eed444ce98feec1635e62394afccf5 --- Utilities.h (.../Utilities.h) (revision b20ab0cdf009f97c0aff428219e901b0603e3fd2) +++ Utilities.h (.../Utilities.h) (revision 47f8ae76f4eed444ce98feec1635e62394afccf5) @@ -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 @@ -47,7 +47,7 @@ TIME_WINDOWED_COUNT_FPGA_CONDUCTIVITY_SENSOR_ERROR, ///< FPGA Conductivity sensor error TIME_WINDOWED_COUNT_FPGA_TEMPERATURE_SENSOR_ERROR, ///< FPGA Temperature sensor error #endif - NUM_OF_TIME_WINDOWED_COUNTS ///< Number of pressure sensors. + NUM_OF_TIME_WINDOWED_COUNTS ///< Number of pressure sensors } TIME_WINDOWED_COUNT_T; // ******* Critical Data Definitions ********* @@ -57,15 +57,15 @@ CRITICAL_DATA_TYPE_U32 = 0, ///< Critical data is unsigned 32-bit integer type CRITICAL_DATA_TYPE_S32, ///< Critical data is signed 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. + 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. - S32 sInt; ///< critical data of signed integer type. - F32 sFlt; ///< critical data of floating point type. + U32 uInt; ///< critical data of unsigned integer type + S32 sInt; ///< critical data of signed integer type + F32 sFlt; ///< critical data of floating point type } CRITICAL_DATAS_T; /// critical integer data structure.