Electronic – Continuous-conversion vs Single-Conversion mode

adcimu

I am working with an LSM9DS1 9DOF IMU and was wondering about some of the choices about operating the magnetometer. This is my first time working with an IMU, so I am having some trouble understanding some of the data sheet with it.

One of the registers (in CTRL_REG3_M) says the system operating mode can be continuous conversion, single conversion, or power down mode. I don't know what the difference between continuous and single conversion mode. I believe this has to do with how the ADC operates, but some insight into the significance of this would be great.

Another register (CTRL_REG5_M) has something that seems similar called block data update. Does this mean that in one case, when I read the output it will update the output register, but in the other the output updates continuously, whether being read or not?

My goal is to sample the magnetometer the magnetometer either at its maximum output ODR of 80Hz, or perhaps faster so that my data rate for the magnetic field corresponds to the data acquired from the accelerometer, which I have set 119 Hz. But I was wondering if these two settings above would have any implications for handing this procedure.

Thanks for the help!

Best Answer

It's all in the name:

  • Continuous - the device does conversions repeatedly and automatically at some defined rate.
  • Single - the device only does a conversion when you instruct it to. This means if you want one sample, you simply ask for one. If you want ten samples, you have to ask for a sample ten times.
  • Power Down - the device is powered down. It does no conversions and the power consumption is reduced. This is a low power/sleep state.
Related Topic