aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2013-03-17 15:44:13 -0700
committerpx4dev <px4@purgatory.org>2013-03-17 15:44:13 -0700
commita9d68b90101ae0fdd4a162199d0d993a7010597e (patch)
tree26a052c4f38c5076f8a87bba75c6dd7eb78fe433 /apps
parent8d47b3c6d428fefc709c612b983fb8449c944a96 (diff)
parent26d45d5e3484ec616238b34be3fa9739d8e30efb (diff)
downloadpx4-firmware-a9d68b90101ae0fdd4a162199d0d993a7010597e.tar.gz
px4-firmware-a9d68b90101ae0fdd4a162199d0d993a7010597e.tar.bz2
px4-firmware-a9d68b90101ae0fdd4a162199d0d993a7010597e.zip
Merge pull request #228 from PX4/ms5611_silencing
Silence MS5611 driver, the perf command still captures the error count /...
Diffstat (limited to 'apps')
-rw-r--r--apps/drivers/ms5611/ms5611.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/drivers/ms5611/ms5611.cpp b/apps/drivers/ms5611/ms5611.cpp
index 08420822a..59ab5936e 100644
--- a/apps/drivers/ms5611/ms5611.cpp
+++ b/apps/drivers/ms5611/ms5611.cpp
@@ -595,7 +595,7 @@ MS5611::cycle()
* spam the console with the message.
*/
} else {
- log("collection error %d", ret);
+ //log("collection error %d", ret);
}
/* reset the collection state machine and try again */
start_cycle();
@@ -627,7 +627,7 @@ MS5611::cycle()
/* measurement phase */
ret = measure();
if (ret != OK) {
- log("measure error %d", ret);
+ //log("measure error %d", ret);
/* reset the collection state machine and try again */
start_cycle();
return;