Browse Source

Comment out line which checks for attempt to set sampling rate beyond that supported by device.

sbg
Robert Dickenson 9 years ago committed by Lorenz Meier
parent
commit
630146686e
  1. 2
      src/drivers/lis3mdl/lis3mdl.cpp

2
src/drivers/lis3mdl/lis3mdl.cpp

@ -669,7 +669,7 @@ LIS3MDL::ioctl(struct file *filp, int cmd, unsigned long arg) @@ -669,7 +669,7 @@ LIS3MDL::ioctl(struct file *filp, int cmd, unsigned long arg)
/* check against maximum rate */
if (ticks < USEC2TICK(LIS3MDL_CONVERSION_INTERVAL)) {
return -EINVAL;
// RobD: quick fix for Phil's testing return -EINVAL;
}
/* update interval for next measurement */

Loading…
Cancel
Save