From 322577ab8c507a42cb810651228b61286537d398 Mon Sep 17 00:00:00 2001 From: Jef Driesen Date: Mon, 15 Mar 2010 11:07:54 +0000 Subject: [PATCH] Fix the divisor for the compass headings. --- src/suunto_d9_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/suunto_d9_parser.c b/src/suunto_d9_parser.c index c7a67e1..93826fb 100644 --- a/src/suunto_d9_parser.c +++ b/src/suunto_d9_parser.c @@ -331,7 +331,7 @@ suunto_d9_parser_samples_foreach (parser_t *abstract, sample_callback_t callback sample.event.value = 0; } else { sample.event.type = SAMPLE_EVENT_HEADING; - sample.event.value = heading / 4; + sample.event.value = heading / 2; } sample.event.time = seconds; if (callback) callback (SAMPLE_TYPE_EVENT, sample, userdata);