Accelerometer

From OLPC
Revision as of 21:50, 20 June 2011 by Quozl (talk | contribs) (Created page with 'An XO-1.75 A2 and A3 feature. == Testing == In OpenFirmware at the Ok prompt, type ''roller'' and press enter. A ball will appear on screen, and the ball will fall accordi…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

An XO-1.75 A2 and A3 feature.

Testing

In OpenFirmware at the Ok prompt, type roller and press enter. A ball will appear on screen, and the ball will fall according to the tilt experienced by the sensor. Press any key to exit.

In OpenFirmware at the Ok prompt, type test /accelerometer and press enter. This uses the sensor's self test function to apply an internal force, and checks that the result is not beyond a reasonable value.

Programming

  • your program must read /sys/devices/platform/lis3lv02d/position and parse the (x,y,z) result,
  • your program should avoid reading position at a rate more than the sample rate the sensor is configured for, unless you don't mind receiving the same sample again,
  • your program will not be told of an overrun or underrun condition,
  • to change the sample rate, write '100\n' or '400\n' to rate,
  • the sensor will be powered down about five seconds after last access.

Internals

According to the data sheet, the sensor generates samples at either 100 Hz or 400 Hz. The samples are moved into the registers. The driver we are using will read the registers at any frequency, above or below the sample frequency.

If we read at a frequency below the sample frequency, then there will be an occasional harmless and undetected overrun condition and we'll get a new sample each time.

If we read at a frequency above the sample frequency, then we get consecutive samples; a series of samples of the same value. Because the new sample has not yet arrived.

We've checked for consecutive identical samples using a Python script. On an XO-1.75 A3, with the sensor configured for the default 100 Hz sample rate, we get roughly five or six consecutive samples before a change. At 400 Hz sample rate, we usually get a different sample each time, but half the time get a repeat.

We've checked how fast a Python script can fetch samples, despite the underrun. On an idle XO-1.75 A3 the rate is about 970 samples per second. Hence the five or six consecutive samples before a change at 100 Hz sample rate.

The Linux driver we are using pays no attention to, and does not expose, the status register in the sensor. If it did, then we could defer a read of sysfs position until the next sample is available. This timing information may become important later.

References

  • runin-accelerometer script for testing data stream from accelerometer,
  • roller command in OpenFirmware,
  • test /accelerometer command in OpenFirmware,
  • lis3lv02d.c in kernel source.