Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r35c07199fda6ba28c7ee417105a16ea3d14a2ad6 -ra53ec9a732b139e0c6650bd14093d8100301357c --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 35c07199fda6ba28c7ee417105a16ea3d14a2ad6) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision a53ec9a732b139e0c6650bd14093d8100301357c) @@ -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(); } } @@ -1189,13 +1189,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; } @@ -1213,7 +1214,8 @@ BOOL testResetHDCommuncationStatus( void ) { BOOL result = FALSE; - if(TRUE == isTestingActivated() ) + + if (TRUE == isTestingActivated() ) { result = TRUE; hdCommunicationStatus.override = OVERRIDE_RESET; @@ -1222,4 +1224,5 @@ } return result; } + /**@}*/