Index: firmware/App/Controllers/Pressures.c =================================================================== diff -u -r5379702cf2aba320cad160bef6c381c0c9138a63 -r7d4711edd7b40cd3e29f43e766f79a8a09586fe9 --- firmware/App/Controllers/Pressures.c (.../Pressures.c) (revision 5379702cf2aba320cad160bef6c381c0c9138a63) +++ firmware/App/Controllers/Pressures.c (.../Pressures.c) (revision 7d4711edd7b40cd3e29f43e766f79a8a09586fe9) @@ -1,14 +1,14 @@ /************************************************************************** * -* Copyright (c) 2020-2023 Diality Inc. - All Rights Reserved. +* Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file Pressures.c * * @author (last) Dara Navaei -* @date (last) 13-Sep-2023 +* @date (last) 28-Sep-2023 * * @author (original) Sean * @date (original) 04-Apr-2020 @@ -250,9 +250,13 @@ checkPersistentAlarm( ALARM_ID_DG_CLEANING_MODE_INLET_WATER_PRESSURE_TOO_LOW, isPressureTooLow, pressure, MIN_INLET_PRESSURE_TO_CLEAR_WARINING_PSIG ); break; +#ifndef _VECTORCAST_ + // This default is reachable in VectorCAST but it is not testable since no static variables or other functions are called + // So it is masked in VectorCAST default: // NOTE: Do nothing for the rest of the modes break; +#endif } } }