Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -rac4879487648b014902895a813bedda2d6df7b7f -r01875def462c74a2ec96a13e9eeca87addad852d --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision ac4879487648b014902895a813bedda2d6df7b7f) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 01875def462c74a2ec96a13e9eeca87addad852d) @@ -496,7 +496,7 @@ // if message from HD broadcast channel, update HD comm status if ( COMM_BUFFER_IN_CAN_HD_BROADCAST == MSG_IN_BUFFERS[ i ] ) { - hdCommunicationStatus.data = TRUE; + hdCommunicationStatus.data = (U32)TRUE; timeOfLastHDCheckIn = getMSTimerCount(); } } @@ -1172,13 +1172,14 @@ * @details Outputs: hdCommunicationStatus * @return TRUE if reset successful, FALSE if not *************************************************************************/ -BOOL testSetHDCommunicationStatus( void ) +BOOL testSetHDCommunicationStatus( U32 value ) { BOOL result = FALSE; - if(TRUE == isTestingActivated() ) + + if (TRUE == isTestingActivated() ) { result = TRUE; - hdCommunicationStatus.ovData = TRUE; + hdCommunicationStatus.ovData = value; hdCommunicationStatus.override = OVERRIDE_KEY; } @@ -1196,7 +1197,8 @@ BOOL testResetHDCommuncationStatus( void ) { BOOL result = FALSE; - if(TRUE == isTestingActivated() ) + + if (TRUE == isTestingActivated() ) { result = TRUE; hdCommunicationStatus.override = OVERRIDE_RESET; @@ -1205,4 +1207,5 @@ } return result; } + /**@}*/