Index: firmware/App/Controllers/Switches.c =================================================================== diff -u -r736cc5b56cc9c784ab1d8fc8687a73d190c35759 -r580a23d5d8e27f8914cbbdc8d9721ef77e16621e --- firmware/App/Controllers/Switches.c (.../Switches.c) (revision 736cc5b56cc9c784ab1d8fc8687a73d190c35759) +++ firmware/App/Controllers/Switches.c (.../Switches.c) (revision 580a23d5d8e27f8914cbbdc8d9721ef77e16621e) @@ -137,17 +137,6 @@ // If the debounce time has been elapsed, update the switch status to the new status else if ( TRUE == didTimeout( switchesStatus[ i ].debounceStartTime, SWITCHES_DEBOUNCE_TIME_MS ) ) { - if ( FRONT_DOOR == i ) - { - // Log front door switch change - sendTreatmentLogEventData( FRONT_DOOR_SWITCH_CHANGED_EVENT, (F32)switchesStatus[ i ].status.data, (F32)currentSwitchStatus ); - } - // removed explicit check due to VectorCast coverage - else - { - // Log pump track switch change - sendTreatmentLogEventData( PUMP_TRACK_SWITCH_CHANGED_EVENT, (F32)switchesStatus[ i ].status.data, (F32)currentSwitchStatus ); - } // If the bit is 0, the door switch is open, because it is normally open switch switchesStatus[ i ].debounceStartTime = 0; switchesStatus[ i ].status.data = currentSwitchStatus;