Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r7092920786ccf9d52c00b84c6f47ccebc4d28118 -r0b80b72dc375e46a710ebfa97c25e5fa4943b072 --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 7092920786ccf9d52c00b84c6f47ccebc4d28118) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 0b80b72dc375e46a710ebfa97c25e5fa4943b072) @@ -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