aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/hmc5883/hmc5883.cpp
diff options
context:
space:
mode:
authorJulian Oes <julian@oes.ch>2013-09-05 15:57:09 +0200
committerJulian Oes <julian@oes.ch>2013-09-05 15:57:09 +0200
commite8c309fb1442f281051874ca6d82af9b52605c3b (patch)
tree1b7ff8cdd5d2075247a39a48c3cd9d8faa3f10fa /src/drivers/hmc5883/hmc5883.cpp
parent84f44107dd3b4ea767f4d161631af034199a78d3 (diff)
downloadpx4-firmware-e8c309fb1442f281051874ca6d82af9b52605c3b.tar.gz
px4-firmware-e8c309fb1442f281051874ca6d82af9b52605c3b.tar.bz2
px4-firmware-e8c309fb1442f281051874ca6d82af9b52605c3b.zip
Workaround to prevent crash during mag calibration
Diffstat (limited to 'src/drivers/hmc5883/hmc5883.cpp')
-rw-r--r--src/drivers/hmc5883/hmc5883.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/drivers/hmc5883/hmc5883.cpp b/src/drivers/hmc5883/hmc5883.cpp
index a5229b237..3ede90a17 100644
--- a/src/drivers/hmc5883/hmc5883.cpp
+++ b/src/drivers/hmc5883/hmc5883.cpp
@@ -962,11 +962,12 @@ int HMC5883::calibrate(struct file *filp, unsigned enable)
warnx("sampling 500 samples for scaling offset");
/* set the queue depth to 10 */
- if (OK != ioctl(filp, SENSORIOCSQUEUEDEPTH, 10)) {
- warn("failed to set queue depth");
- ret = 1;
- goto out;
- }
+ /* don't do this for now, it can lead to a crash in start() respectively work_queue() */
+// if (OK != ioctl(filp, SENSORIOCSQUEUEDEPTH, 10)) {
+// warn("failed to set queue depth");
+// ret = 1;
+// goto out;
+// }
/* start the sensor polling at 50 Hz */
if (OK != ioctl(filp, SENSORIOCSPOLLRATE, 50)) {