Fisheye: Tag 23fc8bbbb3fad7f919f491964c00cdd9064d6353 refers to a dead (removed) revision in file `firmware/App/Modes/Update.c'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 23fc8bbbb3fad7f919f491964c00cdd9064d6353 refers to a dead (removed) revision in file `firmware/App/Modes/Update.h'. Fisheye: No comparison available. Pass `N' to diff? Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r16b5527af1f1ada72110b030bfcf6054fc9a38b8 -r23fc8bbbb3fad7f919f491964c00cdd9064d6353 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 16b5527af1f1ada72110b030bfcf6054fc9a38b8) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 23fc8bbbb3fad7f919f491964c00cdd9064d6353) @@ -40,7 +40,6 @@ #include "TreatmentEnd.h" #include "TreatmentRecirc.h" #include "TreatmentStop.h" -#include "Update.h" #include "Utilities.h" #include "Valves.h" #include "WatchdogMgmt.h" @@ -8013,7 +8012,6 @@ /*********************************************************************//** * @brief -<<<<<<< HEAD * The handleDialInPumpHardStopRequest function handles a * request to stop the dial in pump. * @details Inputs: none @@ -8083,54 +8081,7 @@ /*********************************************************************//** * @brief - * The handleSetBootloaderRequest function handles a - * request to set the flag to trigger update mode - * after a reboot. - * @details Inputs: none - * @details Outputs: message handled - * @param message : a pointer to the message to handle - * @return none - *************************************************************************/ -void handleSetBootloaderRequest( MESSAGE_T *message ) -{ - BOOL result = FALSE; - - // For now, there's no flag to set to stay in bootloader, - // this might change in the future, so leave message. - - // respond to request - sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); -} - -/*********************************************************************//** - * @brief - * The handleEnterBootloaderNowRequest function handles a - * request immediately jump to the bootloader application. - * @details Inputs: none - * @details Outputs: message handled - * @param message : a pointer to the message to handle - * @return none - *************************************************************************/ -void handleEnterBootloaderNowRequest( MESSAGE_T *message ) -{ - BOOL result = (0 == message->hdr.payloadLen); - - // respond to request immediately with whether it was formatted correctly - sendTestAckResponseMsg((MSG_ID_T)message->hdr.msgID, result); - - if (result) - { - // Jump to the bootloader, there is no coming back from this. - startBootloader(); - } -} - -/*********************************************************************//** - * @brief - * The handleEnterBootloaderNowRequest function handles a -======= * The handleRebootNowRequest function handles a ->>>>>>> Update messaging and project * request to reboot the system. A software reset will cause the bootloader * to stay active. * @details Inputs: none Index: firmware/App/Services/SystemCommMessages.h =================================================================== diff -u -rf5f9b7f7aebb2b985d61641713635bc422c29bc9 -r23fc8bbbb3fad7f919f491964c00cdd9064d6353 --- firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision f5f9b7f7aebb2b985d61641713635bc422c29bc9) +++ firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 23fc8bbbb3fad7f919f491964c00cdd9064d6353) @@ -959,7 +959,6 @@ // MSG_ID_HD_BATTERY_COMM_STATUS_OVERRIDE void handleBatteryI2CStatusOverrideRequest( MESSAGE_T *message ); -<<<<<<< HEAD // MSG_ID_HD_DIAL_IN_PUMP_HARD_STOP void handleDialInPumpHardStopRequest( MESSAGE_T * message ); @@ -969,18 +968,9 @@ // MSG_ID_HD_BLOOD_PUMP_HARD_STOP void handleBloodPumpHardStopRequest( MESSAGE_T *message ); -// MSG_ID_HD_SET_ENTER_BOOTLOADER -void handleSetBootloaderRequest( MESSAGE_T *message ); - -// MSG_ID_HD_ENTER_BOOTLOADER_NOW -void handleEnterBootloaderNowRequest( MESSAGE_T *message ); - -// MSG_ID_HD_REBOOT_NOW -======= // MSG_ID_FW_SET_ENTER_BOOTLOADER // MSG_ID_FW_ENTER_BOOTLOADER_NOW // MSG_ID_FW_REBOOT_NOW ->>>>>>> Update messaging and project void handleRebootNowRequest( MESSAGE_T *message ); /**@}*/