Index: Common.h =================================================================== diff -u -r5ba123a425a982ec1cb1318ca506bfe6fbd82e14 -r0dedac00a8d4dd90f373846fb184636407a32602 --- Common.h (.../Common.h) (revision 5ba123a425a982ec1cb1318ca506bfe6fbd82e14) +++ Common.h (.../Common.h) (revision 0dedac00a8d4dd90f373846fb184636407a32602) @@ -322,6 +322,8 @@ F32 primaryCalcTargetTemp; ///< Primary heater calculated target temperature F32 trimmerCalcCurrentTemp; ///< Trimmer heater calculated current temperature U32 trimmerUseLastDC; ///< Trimmer heater use last duty cycle + F32 previsouFlow; ///< Trimmer heater previous flow L/min + U32 controlCounter; ///< Trimmer heater control count } HEATERS_DATA_T; /// Temperature sensors data structure. Index: NVDataMgmt.c =================================================================== diff -u -r7aaf36d98fc6f49394c72ae3472872f36feb44e3 -r0dedac00a8d4dd90f373846fb184636407a32602 --- NVDataMgmt.c (.../NVDataMgmt.c) (revision 7aaf36d98fc6f49394c72ae3472872f36feb44e3) +++ NVDataMgmt.c (.../NVDataMgmt.c) (revision 0dedac00a8d4dd90f373846fb184636407a32602) @@ -2339,6 +2339,7 @@ #endif break; +#ifndef _RELEASE_ case NVDATAMGMT_SW_CONFIG_RECORD: #ifdef _DG_ sendDGSWConfigRecord( calPublishMessageCount + 1, calPublishTotalMessages, length, startPtr ); @@ -2347,6 +2348,7 @@ sendHDSWConfigRecord( calPublishMessageCount + 1, calPublishTotalMessages, length, startPtr ); #endif break; +#endif case NVDATAMGMT_USAGE_INFO_RECORD: #ifdef _DG_ Index: NVDataMgmt.h =================================================================== diff -u -r99f91b0f1bed7da40da75e97d3bb7a3b00e9508d -r0dedac00a8d4dd90f373846fb184636407a32602 --- NVDataMgmt.h (.../NVDataMgmt.h) (revision 99f91b0f1bed7da40da75e97d3bb7a3b00e9508d) +++ NVDataMgmt.h (.../NVDataMgmt.h) (revision 0dedac00a8d4dd90f373846fb184636407a32602) @@ -71,7 +71,7 @@ NVDATAMGMT_CALIBRATION_RECORD = 0, ///< NVDataMgmt process write calibration record. NVDATAMGMT_SYSTEM_RECORD, ///< NVDataMgmt process write system record. NVDATAMGMT_SERVICE_RECORD, ///< NVDataMgmt process service record. -#ifndef _RELEASE +#ifndef _RELEASE_ NVDATAMGMT_SW_CONFIG_RECORD, ///< NVDataMgmt process software record. #endif #ifdef _DG_ Index: Utilities.c =================================================================== diff -u -r9f228dce073e260610bdf89eae3a9e651d27e04e -r0dedac00a8d4dd90f373846fb184636407a32602 --- Utilities.c (.../Utilities.c) (revision 9f228dce073e260610bdf89eae3a9e651d27e04e) +++ Utilities.c (.../Utilities.c) (revision 0dedac00a8d4dd90f373846fb184636407a32602) @@ -15,6 +15,8 @@ * ***************************************************************************/ +#include // For memcpy + #include "Common.h" #include "FPGA.h" #include "Timers.h"