Index: firmware/App/Services/WatchdogMgmt.c =================================================================== diff -u -r195f895cd5f580b448db5a251ab7a7f40ba0f40f -ra79db345deaaeef0f1b619dc49d031fdae22d7e6 --- firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision 195f895cd5f580b448db5a251ab7a7f40ba0f40f) +++ firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision a79db345deaaeef0f1b619dc49d031fdae22d7e6) @@ -114,7 +114,7 @@ } // check to see if watchdog has expired - if ( getCPLDWatchdogExpired() == PIN_SIGNAL_LOW ) + if ( PIN_SIGNAL_LOW == getCPLDWatchdogExpired() ) { // ignore expired watchdog until after watchdog POST if ( ( WATCHDOG_SELF_TEST_STATE_COMPLETE == watchdogSelfTestState ) || @@ -168,7 +168,7 @@ { // waiting here for w.d. test period to prevent this task from checking in - watchdog should expire } - if ( getCPLDWatchdogExpired() == PIN_SIGNAL_LOW ) + if ( PIN_SIGNAL_LOW == getCPLDWatchdogExpired() ) { F32 v24 = getIntADCVoltageConverted( INT_ADC_MAIN_24_VOLTS );