SV 977D User Manual - Appendixes
left boundary of the critical bandwidth, line index
right boundary of the critical bandwidth, line index
tone level in the format 0.01 dB
averaged signal level of the tone in the format 0.01 dB
noise level of the tone in the format 0.01 dB
masking index of the tone in the format 0.01 dB
Spectrum level tuning in dB
measurement uncertainty in the format 0.01 dB
Table B.56. Tonality partial results for postprocessing (ISO 20065:2016)
partial L(max) result for post-processing, 0.01 dB
partial sigma result (max) for post-processing, 0.01 dB
B.4. DATE AND TIME (EXAMPLE DECODING PROCEDURE)
Following function written in C explain how the date and time are coded:
void ExtractDateTime(int date, unsigned int time, int dt[])
{
dt[0] = time % 30; /* sec */
dt[1] = (time/30) % 60; /* min */
dt[2] = time/1800; /* hour */
dt[3] = date & 0x001F; /* day */
dt[4] = (date>>5) & 0x000F; /* month */
dt[5] = ((date>>9) & 0x007F) + 2000; /* year */
}