DLF import: Decode and import temperature

These decodings and constants makes the numbers line up perfectly with
the numbers presented on wetnotes.com.

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2015-01-05 22:59:20 +01:00 committed by Dirk Hohndel
parent 11542d84f7
commit ac6e84c4fd

View file

@ -2602,6 +2602,8 @@ int parse_dlf_buffer(unsigned char *buffer, size_t size)
cur_sample->ndl.seconds = ptr[8] * 60;
// Guessed unit here.. looks good.
cur_sample->tts.seconds = ((ptr[10] & 0x0F) << 4) + ptr[9] * 20;
cur_sample->temperature.mkelvin = (((ptr[11] & 0x0F) << 4) + (ptr[10] >> 4)) * 100 + ZERO_C_IN_MKELVIN;
// ptr[11] & 0xF0 is unknown, and always 0xC in all checked files
sample_end();
break;
case 1: