Index: firmware/App/Services/Messaging.c =================================================================== diff -u -r4a5a809459e76f558dce420dedf20f3de5b4a7a1 -r62aa7e7cbfb6b0dd33987a086df53481ffe4420c --- firmware/App/Services/Messaging.c (.../Messaging.c) (revision 4a5a809459e76f558dce420dedf20f3de5b4a7a1) +++ firmware/App/Services/Messaging.c (.../Messaging.c) (revision 62aa7e7cbfb6b0dd33987a086df53481ffe4420c) @@ -16,7 +16,6 @@ ***************************************************************************/ #include // For memcpy() - #include "AirPump.h" #include "AirTrap.h" #include "AlarmMgmt.h" @@ -27,6 +26,7 @@ #include "Compatible.h" #include "CpldInterface.h" #include "DDInterface.h" +#include "DrySelfTests.h" #include "Ejector.h" #include "FluidBolus.h" #include "FpgaTD.h" @@ -39,6 +39,7 @@ #include "OperationModes.h" #include "PAL.h" #include "Pressures.h" +#include "Prime.h" #include "StateTxBloodPrime.h" #include "StateTxDialysis.h" #include "StateTxPaused.h" @@ -137,6 +138,7 @@ { MSG_ID_UI_TREATMENT_SET_POINT_DIALYSATE_TEMP_CHANGE_REQUEST, &validateAndSetDialysateTemperature }, { MSG_ID_UI_BLOOD_PRIME_CMD_REQUEST, &bloodPrimeHandleCmdRequest }, { MSG_ID_UI_TREATMENT_SET_POINT_BLOOD_FLOW_CHANGE_REQUEST, &bloodPrimeHandleBloodFlowChangeRequest }, + { MSG_ID_UI_TUBE_SET_AUTHENTICATION_ACK_RESPONSE, &drySelfTestHandleTubingSetAuthResponse }, { MSG_ID_UI_ADJUST_DISPOSABLES_CONFIRM_REQUEST, &handleAutoLoadRequest }, { MSG_ID_UI_SETUP_TUBING_SET_CONNECTIONS_CONFIRM_REQUEST, &handleSetupTubingSetConnectionConfirmRequest }, { MSG_ID_UI_ADJUST_DISPOSABLES_REMOVAL_CONFIRM_REQUEST, &handleAutoEjectRequest }, @@ -205,6 +207,7 @@ { MSG_ID_TD_HARD_STOP_BLOOD_PUMP, &testHardStopBloodPump }, { MSG_ID_TD_AIR_PUMP_POWER_RAISE_OVERRIDE_REQUEST, &testAirPumpPowerRaiseOverride }, { MSG_ID_TD_AIR_PUMP_POWER_LOWER_OVERRIDE_REQUEST, &testAirPumpPowerLowerOverride }, + { MSG_ID_TD_HARD_STOP_BLOOD_PUMP, &testHardStopBloodPump }, { MSG_ID_TD_BARO_MFG_CRC_OVERRIDE, &testBaroPressureMFGCRCOverride }, { MSG_ID_TD_BARO_PRESSURE_OVERRIDE, &testBaroPressureOverride }, { MSG_ID_TD_TEMPERATURE_OVERRIDE, &testTemperatureOverride }, @@ -229,6 +232,7 @@ { MSG_ID_TD_GET_ALARM_PROPERTIES_REQUEST, &testGetAlarmPropertiesRequest }, { MSG_ID_TD_RINSEBACK_VOLUME_OVERRIDE, &testRinsebackVolumeOverride }, { MSG_ID_TD_RINSEBACK_PUBLISH_INTERVAL_OVERRIDE_REQUEST, &testRinsebackPublishIntervalOverride }, + { MSG_ID_TD_PRIME_PUBLISH_INTERVAL_OVERRIDE, &testPrimePublishIntervalOverride }, }; /// Number of entries in the message handling function lookup table.