Index: firmware/App/Tasks/TaskGeneral.c =================================================================== diff -u -ra303cd4258157a8fbcbd8af4dd2bbaadec1a736c -rf068446fdb7889d320ddb6ffbd58f347ce0501e7 --- firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision a303cd4258157a8fbcbd8af4dd2bbaadec1a736c) +++ firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision f068446fdb7889d320ddb6ffbd58f347ce0501e7) @@ -14,7 +14,6 @@ * **************************************************************************/ -#include #include "gio.h" #include "lin.h" @@ -24,12 +23,6 @@ #include "WatchdogMgmt.h" #include "TaskGeneral.h" -#ifdef RM46_EVAL_BOARD_TARGET - #include "CPLD.h" - #include "SystemCommMessages.h" - static BOOL lastUserPress = FALSE; -#endif - /************************************************************************* * @brief taskGeneral * The taskGeneral function handles the scheduled General Task interrupt.\n @@ -52,24 +45,6 @@ // run operation mode state machine execOperationModes(); - // control alarm lamp - execAlarmLamp(); - -#ifdef RM46_EVAL_BOARD_TARGET - if ( getUserButtonState() == PIN_SIGNAL_LOW ) - { - if ( lastUserPress == FALSE ) - { - lastUserPress = TRUE; - setUserLED( FALSE ); - } - } - else - { - lastUserPress = FALSE; - } -#endif - // manage data to be transmitted to other sub-systems execSystemCommTx();