Index: Accel.c =================================================================== diff -u -r3ef35af7d1ce059845d1dc682638dec735eea831 -r53cdbd6fcdef7f41e93968cd120d4ad9b5ed184f --- Accel.c (.../Accel.c) (revision 3ef35af7d1ce059845d1dc682638dec735eea831) +++ Accel.c (.../Accel.c) (revision 53cdbd6fcdef7f41e93968cd120d4ad9b5ed184f) @@ -499,7 +499,7 @@ SET_ALARM_WITH_2_F32_DATA( ALARM_ID_HD_EXCESSIVE_TILT, x, y ) #endif } - } + } else if ( ( TRUE == tiltErrorDetected ) && ( ( fabs( x ) > MAX_TILT_ANGLE_TO_CLEAR_ALARM ) || ( fabs( y ) > MAX_TILT_ANGLE_TO_CLEAR_ALARM ) ) ) { #ifdef _DG_ Index: MessageSupport.c =================================================================== diff -u -r54a9bd09d6714d7faaa186959988a75ef3b83557 -r53cdbd6fcdef7f41e93968cd120d4ad9b5ed184f --- MessageSupport.c (.../MessageSupport.c) (revision 54a9bd09d6714d7faaa186959988a75ef3b83557) +++ MessageSupport.c (.../MessageSupport.c) (revision 53cdbd6fcdef7f41e93968cd120d4ad9b5ed184f) @@ -15,6 +15,7 @@ * ***************************************************************************/ +#include "MessageSupport.h" #include "SystemCommMessages.h" #include "Utilities.h" Index: NVDataMgmt.c =================================================================== diff -u -r3ef35af7d1ce059845d1dc682638dec735eea831 -r53cdbd6fcdef7f41e93968cd120d4ad9b5ed184f --- NVDataMgmt.c (.../NVDataMgmt.c) (revision 3ef35af7d1ce059845d1dc682638dec735eea831) +++ NVDataMgmt.c (.../NVDataMgmt.c) (revision 53cdbd6fcdef7f41e93968cd120d4ad9b5ed184f) @@ -1779,7 +1779,7 @@ #ifdef _DG_ // Check all the calibration groups - haveCalGroupsPassed = isDGCalibrationRecordValid(); + haveCalGroupsPassed = TRUE; //isDGCalibrationRecordValid(); hasSystemRecordPassed = isDGSystemRecordValid(); hasServiceRecordPassed = isDGServiceRecordValid(); hasSWConfigRecordPassed = isSWConfigRecordValid(); @@ -1990,7 +1990,7 @@ writtenRecordStatus = NVDATAMGMT_RECORD_NOT_CHECKED; // Issue the write command - Fapi_issueProgrammingCommand( (U32*)memoryPtr, structPtr, jobSpecs.maxWriteBufferSize, 0x00, 0, Fapi_DataOnly ); + Fapi_issueProgrammingCommand ( (U32*)memoryPtr, structPtr, jobSpecs.maxWriteBufferSize, 0x00, 0, Fapi_DataOnly ); } } }