Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r0563950b76967db544ca2d17fe2b1008ca13b41b -r747c714d2b4f80b598a66326d62a179aeefda390 --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 0563950b76967db544ca2d17fe2b1008ca13b41b) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 747c714d2b4f80b598a66326d62a179aeefda390) @@ -1209,6 +1209,10 @@ handleReceiveROPermeateSampleReadyToDispenseFromDG( message ); break; + case MSG_ID_UI_INSTITUTIONAL_RECORD_REQUEST: + sendInstitutionalRecordToUI( message ); + break; + // NOTE: this always must be the last case case MSG_ID_TESTER_LOGIN_REQUEST: handleTesterLogInRequest( message ); @@ -1820,6 +1824,14 @@ handleTestHDRecirulationPctOverrideRequest( message ); break; + case MSG_ID_HD_GET_INSTITUTIONAL_RECORD: + handleGetHDInstitutionalRecord( message ); + break; + + case MSG_ID_HD_SET_INSTITUTIONAL_RECORD: + handleSetHDInstitutionalRecord( message ); + break; + // The default cannot be reached in VectorCAST since the cases are run in a for loop default: // Unrecognized message ID received - ignore