aboutsummaryrefslogtreecommitdiff
path: root/apps/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'apps/drivers')
-rw-r--r--apps/drivers/hmc5883/hmc5883.cpp2
-rw-r--r--apps/drivers/ms5611/ms5611.cpp2
2 files changed, 0 insertions, 4 deletions
diff --git a/apps/drivers/hmc5883/hmc5883.cpp b/apps/drivers/hmc5883/hmc5883.cpp
index f29e7dcb0..0fa1f365d 100644
--- a/apps/drivers/hmc5883/hmc5883.cpp
+++ b/apps/drivers/hmc5883/hmc5883.cpp
@@ -807,9 +807,7 @@ test(int fd)
/* do a simple demand read */
- uint64_t start_mag = hrt_absolute_time();
sz = read(fd, &report, sizeof(report));
- test_note("time for read: %lld (should be below 2000!)", hrt_absolute_time() - start_mag);
if (sz != sizeof(report))
return test_fail("immediate read failed: %d", errno);
diff --git a/apps/drivers/ms5611/ms5611.cpp b/apps/drivers/ms5611/ms5611.cpp
index 872cf9fdb..8f8f96217 100644
--- a/apps/drivers/ms5611/ms5611.cpp
+++ b/apps/drivers/ms5611/ms5611.cpp
@@ -833,9 +833,7 @@ test(int fd)
/* do a simple demand read */
- uint64_t start_baro = hrt_absolute_time();
sz = read(fd, &report, sizeof(report));
- test_note("time for read: %lld (should be below 2000!)", hrt_absolute_time() - start_baro);
if (sz != sizeof(report))
return test_fail("immediate read failed: %d", errno);