Index: firmware/App/Services/Messaging.c =================================================================== diff -u -rd8cd7de2f84b26aafc153e2bb665a5058a040bf0 -rc9aa3971be05f25a7b0d7124e57cc60617c90ad7 --- firmware/App/Services/Messaging.c (.../Messaging.c) (revision d8cd7de2f84b26aafc153e2bb665a5058a040bf0) +++ firmware/App/Services/Messaging.c (.../Messaging.c) (revision c9aa3971be05f25a7b0d7124e57cc60617c90ad7) @@ -3,6 +3,7 @@ #include "BoostPump.h" #include "Compatible.h" +#include "Level.h" #include "Messaging.h" #include "OperationModes.h" #include "PAL.h" @@ -68,7 +69,9 @@ MSG_ID_RO_PRESSURE_READ_COUNT_OVERRIDE_REQUEST, MSG_ID_RO_PRESSURE_ERROR_COUNT_OVERRIDE_REQUEST, MSG_ID_RO_PRESSURE_PUBLISH_INTERVAL_OVERRIDE_REQUEST, - MSG_ID_RO_DEBUG_EVENT + MSG_ID_RO_DEBUG_EVENT, + MSG_ID_RO_LEVEL_PUBLISH_INTERVAL_OVERRIDE_REQUEST, + MSG_ID_RO_LEVEL_OVERRIDE_REQUEST }; /// Message handling function table @@ -88,7 +91,9 @@ &testPressureSensorReadCounterOverride, &testPressureSensorErrorCounterOverride, &testPressureSensorDataPublishIntervalOverride, - &handleUnhandledMsg + &handleUnhandledMsg, + &testLevelsDataPublishIntervalOverride, + &testLevelStateOverride }; #define NUM_OF_FUNCTION_HANDLERS (sizeof(MSG_FUNCTION_HANDLERS) / sizeof(MsgFuncPtr))