diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-17 14:00:28 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-10 07:03:24 -0800 |
commit | 22f66501ac4075084c0fd1d0b0d943aa92df1306 (patch) | |
tree | 8dedaff461f109d531f45c7e6045ec54585e4975 /libdivecomputer.c | |
parent | b88958ded55f6d437e74e6c753574128351ad257 (diff) | |
download | subsurface-22f66501ac4075084c0fd1d0b0d943aa92df1306.tar.gz |
Add support for heartrate and bearing information in samples
libdivecomputer already supports this, but we didn't save it.
Tested-by: Oscar Isoz <jan.oscar.isoz@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'libdivecomputer.c')
-rw-r--r-- | libdivecomputer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdivecomputer.c b/libdivecomputer.c index 3e4af4935..b3cc1d5f7 100644 --- a/libdivecomputer.c +++ b/libdivecomputer.c @@ -220,10 +220,10 @@ sample_cb(dc_sample_type_t type, dc_sample_value_t value, void *userdata) printf(" <rbt>%u</rbt>\n", value.rbt); break; case DC_SAMPLE_HEARTBEAT: - printf(" <heartbeat>%u</heartbeat>\n", value.heartbeat); + sample->heartbeat = value.heartbeat; break; case DC_SAMPLE_BEARING: - printf(" <bearing>%u</bearing>\n", value.bearing); + sample->bearing = value.bearing; break; case DC_SAMPLE_VENDOR: printf(" <vendor time='%u:%02u' type=\"%u\" size=\"%u\">", FRACTION(sample->time.seconds, 60), |