Index: NVDataMgmt.c =================================================================== diff -u -r25f65e8a300e8541f5b772c11c458b659c3cd43e -rb3537c018fd26db8631478acaa7962801eb720e9 --- NVDataMgmt.c (.../NVDataMgmt.c) (revision 25f65e8a300e8541f5b772c11c458b659c3cd43e) +++ NVDataMgmt.c (.../NVDataMgmt.c) (revision b3537c018fd26db8631478acaa7962801eb720e9) @@ -347,15 +347,18 @@ U16 crc; ///< CRC for the DG heaters info structure. } DG_HEATERS_INFO_GROUP_T; +#ifndef _RELEASE_ /// DG software configurations group typedef struct { DG_SW_CONFIG_RECORD_T dgSWConfigsRecord; ///< Software configurations record. + // Since the software configurations are one byte, Num_of was used for the length of the lists U08 padding[ RECORD_PADDING_LENGTH(DG_SW_CONFIG_RECORD_T, MAX_RTC_RAM_OPS_BUFFER_BYTES) ]; ///< Software configurations group padding. U16 crc; ///< Software configurations CRC. } DG_SW_CONFIG_GROUP_T; #endif +#endif #ifdef _HD_ /// HD calibration groups structure @@ -2857,6 +2860,7 @@ return status; } +#ifndef _RELEASE_ /*********************************************************************//** * @brief * The isSWConfigRecordValid function checks the validity of the software @@ -2907,6 +2911,7 @@ return status; } +#endif #ifdef _DG_ /*********************************************************************//**