Index: firmware/App/Modes/ConsumableSelfTest.c =================================================================== diff -u -r6cd85442baebdeecec6fc9b5009011b8d961f45c -r6a43b24baa34ac9d842e2bdf8396aad333571d6b --- firmware/App/Modes/ConsumableSelfTest.c (.../ConsumableSelfTest.c) (revision 6cd85442baebdeecec6fc9b5009011b8d961f45c) +++ firmware/App/Modes/ConsumableSelfTest.c (.../ConsumableSelfTest.c) (revision 6a43b24baa34ac9d842e2bdf8396aad333571d6b) @@ -29,7 +29,7 @@ // ********** private data ********** static CONSUMABLE_SELF_TESTS_STATE_T currentConsumableSelfTestState; ///< Current state of the consumable self-tests state machine. -static BOOL confirmConsumableInstallRequested; ///< Flag indicates user has confirmed the installation of consumables. +static BOOL consumableInstallConfirmed; ///< Flag indicates user has confirmed the installation of consumables. // ********** private function prototypes ********** @@ -45,7 +45,7 @@ void initConsumableSelfTest( void ) { currentConsumableSelfTestState = CONSUMABLE_SELF_TESTS_INSTALL_STATE; - confirmConsumableInstallRequested = FALSE; + consumableInstallConfirmed = FALSE; } /*********************************************************************//** @@ -81,7 +81,7 @@ cmdStartDG(); cmdSetDGDialysateTargetTemps( 39.0, 37.0 ); cmdSetDGActiveReservoir( DG_RESERVOIR_2 ); - confirmConsumableInstallRequested = FALSE; + consumableInstallConfirmed = FALSE; #ifdef SKIP_CONSUMABLE_TESTS currentConsumableSelfTestState = CONSUMABLE_SELF_TESTS_COMPLETE_STATE; #else @@ -154,7 +154,7 @@ *************************************************************************/ void signalUserConfirmConsumableInstall( void ) { - confirmConsumableInstallRequested = TRUE; + consumableInstallConfirmed = TRUE; } /*********************************************************************//**