Example #1
0
        private void SetMagCtrl2()
        {
            byte ctrl2;

            //  convert FSR to uT

            switch (_config.MagneticFullScaleRange)
            {
            case MagneticFullScaleRange.Range4Gauss:
                ctrl2 = 0;
                _magneticFieldScale = 0.014;
                break;

            case MagneticFullScaleRange.Range8Gauss:
                ctrl2 = 0x20;
                _magneticFieldScale = 0.029;
                break;

            case MagneticFullScaleRange.Range12Gauss:
                ctrl2 = 0x40;
                _magneticFieldScale = 0.043;
                break;

            case MagneticFullScaleRange.Range16Gauss:
                ctrl2 = 0x60;
                _magneticFieldScale = 0.058;
                break;

            default:
                throw new SensorException($"Illegal LSM9DS1 compass FSR code {_config.MagneticFullScaleRange}");
            }

            I2CSupport.Write(_magI2CDevice, LSM9DS1Defines.MAG_CTRL2, ctrl2, "Failed to set LSM9DS1 compass CTRL6");
        }
Example #2
0
        private void VerifyDeviceMagId()
        {
            byte id = I2CSupport.Read8Bits(_magI2CDevice, LSM9DS1Defines.MAG_WHO_AM_I, "Failed to read LSM9DS1 mag id");

            if (id != LSM9DS1Defines.MAG_ID)
            {
                throw new SensorException($"Incorrect LSM9DS1 mag id {id}");
            }
        }
Example #3
0
        private void SetAccelCtrl7()
        {
            byte ctrl7 = 0x00;

            //Bug: Bad things happen.
            //byte ctrl7 = 0x05;

            I2CSupport.Write(_accelGyroI2CDevice, LSM9DS1Defines.CTRL7, ctrl7, "Failed to set LSM9DS1 accel CTRL7");
        }
Example #4
0
        private void VerifyDeviceAccelGyroId()
        {
            byte id = I2CSupport.Read8Bits(_accelGyroI2CDevice, LSM9DS1Defines.WHO_AM_I, "Failed to read LSM9DS1 accel/gyro id");

            if (id != LSM9DS1Defines.ID)
            {
                throw new SensorException($"Incorrect LSM9DS1 gyro id {id}");
            }
        }
Example #5
0
        private void SetMagCtrl1()
        {
            int compassSampleRateValue = (int)_config.CompassSampleRate;

            if ((compassSampleRateValue < 0) || (compassSampleRateValue > 7))
            {
                throw new SensorException($"Illegal LSM9DS1 compass sample rate code {_config.CompassSampleRate}");
            }

            byte ctrl1 = (byte)(compassSampleRateValue << 2);

            I2CSupport.Write(_magI2CDevice, LSM9DS1Defines.MAG_CTRL1, ctrl1, "Failed to set LSM9DS1 compass CTRL5");
        }
Example #6
0
        private void SetGyroCtrl3()
        {
            int gyroHighPassFilterCodeValue = (int)_config.GyroHighPassFilterCode;

            if ((gyroHighPassFilterCodeValue < 0) || (gyroHighPassFilterCodeValue > 9))
            {
                throw new SensorException($"Illegal LSM9DS1 gyro high pass filter code {_config.GyroHighPassFilterCode}");
            }

            byte ctrl3 = (byte)gyroHighPassFilterCodeValue;

            //  Turn on hpf
            ctrl3 |= 0x40;

            I2CSupport.Write(_accelGyroI2CDevice, LSM9DS1Defines.CTRL3, ctrl3, "Failed to set LSM9DS1 gyro CTRL3");
        }
Example #7
0
        private void SetAccelCtrl6()
        {
            int accelSampleRateValue = (int)_config.AccelSampleRate;

            if ((accelSampleRateValue < 1) || (accelSampleRateValue > 6))
            {
                throw new SensorException($"Illegal LSM9DS1 accel sample rate code {_config.AccelSampleRate}");
            }

            int accelLowPassFilterValue = (int)_config.AccelLowPassFilter;

            if ((accelLowPassFilterValue < 0) || (accelLowPassFilterValue > 3))
            {
                throw new SensorException($"Illegal LSM9DS1 accel low pass fiter code {_config.AccelLowPassFilter}");
            }

            byte ctrl6 = (byte)(accelSampleRateValue << 5);

            switch (_config.AccelFullScaleRange)
            {
            case AccelFullScaleRange.Range2g:
                _accelerationScale = 0.000061;
                break;

            case AccelFullScaleRange.Range4g:
                _accelerationScale = 0.000122;
                break;

            case AccelFullScaleRange.Range8g:
                _accelerationScale = 0.000244;
                break;

            case AccelFullScaleRange.Range16g:
                _accelerationScale = 0.000732;
                break;

            default:
                throw new SensorException($"Illegal LSM9DS1 accel FSR code {_config.AccelFullScaleRange}");
            }

            ctrl6 |= (byte)((accelLowPassFilterValue) | (accelSampleRateValue << 3));

            I2CSupport.Write(_accelGyroI2CDevice, LSM9DS1Defines.CTRL6, ctrl6, "Failed to set LSM9DS1 accel CTRL6");
        }
Example #8
0
        /// <summary>
        /// Tries to update the readings.
        /// Returns true if new readings are available, otherwise false.
        /// An exception is thrown if something goes wrong.
        /// </summary>
        public override bool Update()
        {
            byte status = I2CSupport.Read8Bits(_accelGyroI2CDevice, LSM9DS1Defines.STATUS, "Failed to read LSM9DS1 status");

            if ((status & 0x03) != 0x03)
            {
                // Data not yet available
                return(false);
            }

            byte[] gyroData = I2CSupport.ReadBytes(_accelGyroI2CDevice, 0x80 + LSM9DS1Defines.OUT_X_L_G, 6, "Failed to read LSM9DS1 gyro data");

            byte[] accelData = I2CSupport.ReadBytes(_accelGyroI2CDevice, 0x80 + LSM9DS1Defines.OUT_X_L_XL, 6, "Failed to read LSM9DS1 accel data");

            byte[] magData = I2CSupport.ReadBytes(_magI2CDevice, 0x80 + LSM9DS1Defines.MAG_OUT_X_L, 6, "Failed to read LSM9DS1 compass data");

            var readings = new SensorReadings
            {
                Timestamp          = DateTime.Now,
                Gyro               = MathSupport.ConvertToVector(gyroData, _gyroScale, ByteOrder.LittleEndian),
                GyroValid          = true,
                Acceleration       = MathSupport.ConvertToVector(accelData, _accelerationScale, ByteOrder.LittleEndian),
                AccelerationValid  = true,
                MagneticField      = MathSupport.ConvertToVector(magData, _magneticFieldScale, ByteOrder.LittleEndian),
                MagneticFieldValid = true
            };

            // Sort out gyro axes and correct for bias
            readings.Gyro.Z = -readings.Gyro.Z;

            // Sort out accel data;
            readings.Acceleration.X = -readings.Acceleration.X;
            readings.Acceleration.Y = -readings.Acceleration.Y;

            // Sort out mag axes
            readings.MagneticField.X = -readings.MagneticField.X;
            readings.MagneticField.Z = -readings.MagneticField.Z;

            AssignNewReadings(readings);
            return(true);
        }
Example #9
0
 private void SetMagCtrl3()
 {
     I2CSupport.Write(_magI2CDevice, LSM9DS1Defines.MAG_CTRL3, 0x00, "Failed to set LSM9DS1 compass CTRL3");
 }
Example #10
0
        private void SetGyroSampleRate()
        {
            byte ctrl1;

            switch (_config.GyroSampleRate)
            {
            case GyroSampleRate.Freq14_9Hz:
                ctrl1      = 0x20;
                SampleRate = 15;
                break;

            case GyroSampleRate.Freq59_5Hz:
                ctrl1      = 0x40;
                SampleRate = 60;
                break;

            case GyroSampleRate.Freq119Hz:
                ctrl1      = 0x60;
                SampleRate = 119;
                break;

            case GyroSampleRate.Freq238Hz:
                ctrl1      = 0x80;
                SampleRate = 238;
                break;

            case GyroSampleRate.Freq476Hz:
                ctrl1      = 0xa0;
                SampleRate = 476;
                break;

            case GyroSampleRate.Freq952Hz:
                ctrl1      = 0xc0;
                SampleRate = 952;
                break;

            default:
                throw new SensorException($"Illegal LSM9DS1 gyro sample rate code {_config.GyroSampleRate}");
            }

            SampleInterval = (long)1000000 / SampleRate;

            switch (_config.GyroBandwidthCode)
            {
            case GyroBandwidthCode.BandwidthCode0:
                ctrl1 |= 0x00;
                break;

            case GyroBandwidthCode.BandwidthCode1:
                ctrl1 |= 0x01;
                break;

            case GyroBandwidthCode.BandwidthCode2:
                ctrl1 |= 0x02;
                break;

            case GyroBandwidthCode.BandwidthCode3:
                ctrl1 |= 0x03;
                break;

            default:
                throw new SensorException($"Illegal LSM9DS1 gyro BW code {_config.GyroBandwidthCode}");
            }

            switch (_config.GyroFullScaleRange)
            {
            case GyroFullScaleRange.Range245:
                ctrl1     |= 0x00;
                _gyroScale = 0.00875 * MathSupport.DegreeToRad;
                break;

            case GyroFullScaleRange.Range500:
                ctrl1     |= 0x08;
                _gyroScale = 0.0175 * MathSupport.DegreeToRad;
                break;

            case GyroFullScaleRange.Range2000:
                ctrl1     |= 0x18;
                _gyroScale = 0.07 * MathSupport.DegreeToRad;
                break;

            default:
                throw new SensorException($"Illegal LSM9DS1 gyro FSR code {_config.GyroFullScaleRange}");
            }

            I2CSupport.Write(_accelGyroI2CDevice, LSM9DS1Defines.CTRL1, ctrl1, "Failed to set LSM9DS1 gyro CTRL1");
        }
Example #11
0
        private async Task BootDevice()
        {
            I2CSupport.Write(_accelGyroI2CDevice, LSM9DS1Defines.CTRL8, 0x81, "Failed to boot LSM9DS1");

            await Task.Delay(100);
        }