Index: NVDataMgmt.c =================================================================== diff -u -r7ec3ef204695359965c04e9db55d5c8d5bad01ab -r74f514bf950f188d70ca4ae1e4b6fa2309bb3870 --- NVDataMgmt.c (.../NVDataMgmt.c) (revision 7ec3ef204695359965c04e9db55d5c8d5bad01ab) +++ NVDataMgmt.c (.../NVDataMgmt.c) (revision 74f514bf950f188d70ca4ae1e4b6fa2309bb3870) @@ -941,6 +941,12 @@ // Got new data for the EEPROM records, set the latest institutional record to treatment parameters to make sure // the treatment parameters have the record available all the time setNVInstitutionalRecordToTxParamsRecord( &hdInstitutionalGroup.hdInstitutionalRecord ); + + // Received new institutional record and it is valid, send it to the UI to be up to date + MESSAGE_T institMsg; + institMsg.hdr.msgID = 0; + institMsg.hdr.payloadLen = 0; + sendInstitutionalRecordToUI( &institMsg ); #endif // Signal that there is a new calibration record available. @@ -1881,6 +1887,14 @@ newCalStartTimer = getMSTimerCount(); isNewCalAvailable = TRUE; nvDataMgmtSelfTestResult = SELF_TEST_STATUS_PASSED; + +#ifdef _HD_ + MESSAGE_T institMsg; + // Received new institutional record and it is valid, send it to the UI to be up to date + institMsg.hdr.msgID = 0; + institMsg.hdr.payloadLen = 0; + sendInstitutionalRecordToUI( &institMsg ); +#endif } else {