Index: NVDataMgmt.c =================================================================== diff -u -r40da83db6337696ad00062de65033b23ba12f4b9 -r76bfb702eeef1295e4767eed7cd13420fe6ab803 --- NVDataMgmt.c (.../NVDataMgmt.c) (revision 40da83db6337696ad00062de65033b23ba12f4b9) +++ NVDataMgmt.c (.../NVDataMgmt.c) (revision 76bfb702eeef1295e4767eed7cd13420fe6ab803) @@ -938,9 +938,15 @@ BOOL scheduleStatus = enqueueSector0Records(); #ifdef _HD_ + MESSAGE_T institMsg; // 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 + institMsg.hdr.msgID = 0; + institMsg.hdr.payloadLen = 0; + handleSendInstitutionalRecordToUI( &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; + handleSendInstitutionalRecordToUI( &institMsg ); +#endif } else {