Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -reff7b1575f008f81b29ef906f6346fac6012d3ab -r83b1a65b576994e1f8e1476629d8f1277cd67720 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision eff7b1575f008f81b29ef906f6346fac6012d3ab) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 83b1a65b576994e1f8e1476629d8f1277cd67720) @@ -25,6 +25,7 @@ #include "WatchdogMgmt.h" #include "SystemCommMessages.h" #include "SystemComm.h" +#include "CPLD.h" // ********** private definitions ********** @@ -146,6 +147,25 @@ /************************************************************************* + * @brief handleDGFillStartStopMessages + * The handleDGFillStartStopMessages function handles a response to the + * start and stop messages thru the CAN bus. + * @details + * Inputs : none + * Outputs : message handled + * @param message : a pointer to the message to handle + * @return none + *************************************************************************/ +void handleDGFillStartStopMessages( MESSAGE_T *message ) +{ + #ifdef RM46_EVAL_BOARD_TARGET + toggleUserLED(); + #endif + +} + + +/************************************************************************* * TEST SUPPORT FUNCTIONS *************************************************************************/ @@ -194,7 +214,8 @@ *************************************************************************/ BOOL isTestingActivated( void ) { - return testerLoggedIn; + //TODO: Disable all login related functions + return TRUE; } /*************************************************************************