From faea11e4fb6e7eef6eb0003c355ce851dc235f41 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sun, 2 Sep 2018 13:14:41 -0700 Subject: libdivecomputer: add support for DC_SAMPLE_TTS if it exists libdivecomputer didn't use to have a TTS sample value, but we're adding one, so add conditional support for it if it exists. Signed-off-by: Linus Torvalds --- core/libdivecomputer.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'core') diff --git a/core/libdivecomputer.c b/core/libdivecomputer.c index 44bf78b80..c9d67e3ed 100644 --- a/core/libdivecomputer.c +++ b/core/libdivecomputer.c @@ -373,6 +373,11 @@ sample_cb(dc_sample_type_t type, dc_sample_value_t value, void *userdata) case DC_SAMPLE_RBT: sample->rbt.seconds = (!strncasecmp(dc->model, "suunto", 6)) ? value.rbt : value.rbt * 60; break; +#ifdef DC_SAMPLE_TTS + case DC_SAMPLE_TTS: + sample->tts.seconds = value.time; + break; +#endif case DC_SAMPLE_HEARTBEAT: sample->heartbeat = heartbeat = value.heartbeat; break; -- cgit v1.2.3-70-g09d2