From ac6e84c4fd8e7cdccdb75cd978e6b3fa4f78d3c9 Mon Sep 17 00:00:00 2001 From: Anton Lundin Date: Mon, 5 Jan 2015 22:59:20 +0100 Subject: 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 Signed-off-by: Dirk Hohndel --- parse-xml.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/parse-xml.c b/parse-xml.c index 1f1b87ee5..77a62cca4 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -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: -- cgit v1.2.3-70-g09d2