Example of using Xbus library to communicate with an MTi-1 series device using a full-duplex UART connection.

Dependencies:   mbed-rtos mbed Xbus

Fork of MTi-1_example by Alex Young

Important Information

This example is deprecated and no longer maintained. There are new embedded examples available in the MT SDK folder of the MT Software Suite. For more information please visit: https://xsenstechnologies.force.com/knowledgebase/s/article/Introduction-to-the-MT-SDK-programming-examples-for-MTi-devices

Overview

The example program demonstrates connecting to an MTi-1 series device, restoring communications settings to default if necessary, and configuring the MTi to send data. For an MTi-1 the device is configured to send inertial sensor data, while MTi-2 and MTi-3 devices are configured to output orientation data using the onboard XKF3i filter.

Communication with the MTi-1 series device is implemented using a either a full-duplex UART, I2C or SPI bus. A reset line is used to reset the MTi during initialization. Data is output to a host PC terminal using a second UART.

For more information on the MTi-1 series communication protocol please refer to the datasheet: https://www.xsens.com/download/pdf/documentation/mti-1/mti-1-series_datasheet.pdf

Supported Platforms

The program has been tested on the following mbed platforms:

Using the Example

  1. To use the example program connect one of the supported mbed boards to the host PC and download the application from the mbed online compiler to the target device.
  2. With the mbed board unpowered (USB disconnected) wire the mbed board to the MTi-1 development board. The following connections are required:
    • In all cases:
      • 5V (or 3V3) main supply to VDD (P300-1)
      • MCU IO voltage (IORef) to VDDIO (P300-2)
      • GND to GND (P300-3)
      • MT_NRESET to nRST (P300-5)
    • For I2C communication:
      • MT_SCL to I2C_SCL (P300-9)
      • MT_SDA to I2C_SDA (P300-11)
      • MT_DRDY to DRDY (P300-15)
      • MT_ADD0 to ADD0 (P300-17)
      • MT_ADD1 to ADD1 (P300-19)
      • MT_ADD2 to ADD2 (P300-21)
    • For SPI communication:
      • MT_DRDY to DRDY (P300-15)
      • MT_SCLK to SPI_SCK (P300-17)
      • MT_MISO to SPI_MISO (P300-19)
      • MT_MOSI to SPI_MOSI (P300-21)
      • MT_nCS to SPI_nCS (P300-23)
    • For UART communication:
      • MT_RX to UART_TX (P300-9)
      • MT_TX to UART_RX (P300-11)

For more information on the MTi-1 development board please refer to the MTi-1 series user manual: https://www.xsens.com/download/pdf/documentation/mti-1/mti-1-series_dk_user_manual.pdf

Information

Check the defines at the top of main.cpp to determine which IO pins are used for the MT_xxx connections on each mbed platform.

Information

The active peripheral (I2C, SPI or UART) is selected on the MTi-1 development board through the PSEL0 and PSEL1 switches. Look on the bottom of the development board for the correct settings.

  1. Connect to the target using a serial terminal. The application is configured for:
    • Baudrate = 921600
    • Stop bits = 1
    • No parity bits
    • No flow control
  2. Reset the mbed board.
  3. You should be presented with a simple user interface as shown below:
MTi-1 series embedded example firmware.
Device ready for operation.
Found device with ID: 03880011.
Device is an MTi-3: Attitude Heading Reference System.
Output configuration set to:
        Packet counter: 65535 Hz
        Sample time fine: 65535 Hz
        Quaternion: 100 Hz
        Status word: 65535 Hz

Press 'm' to start measuring and 'c' to return to config mode.
Committer:
Alex Young
Date:
Thu May 21 14:36:52 2015 +0200
Revision:
40:b77a8c10c76d
Child:
61:b9d3e7e5ba0c
Add utility module for processing device ids

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Alex Young 40:b77a8c10c76d 1 /*!
Alex Young 40:b77a8c10c76d 2 * \file
Alex Young 40:b77a8c10c76d 3 * \copyright
Alex Young 40:b77a8c10c76d 4 * Copyright (C) Xsens Technologies B.V., 2015. All rights reserved.
Alex Young 40:b77a8c10c76d 5 *
Alex Young 40:b77a8c10c76d 6 * This source code is intended for use only by Xsens Technologies BV and
Alex Young 40:b77a8c10c76d 7 * those that have explicit written permission to use it from
Alex Young 40:b77a8c10c76d 8 * Xsens Technologies BV.
Alex Young 40:b77a8c10c76d 9 *
Alex Young 40:b77a8c10c76d 10 * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
Alex Young 40:b77a8c10c76d 11 * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
Alex Young 40:b77a8c10c76d 12 * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
Alex Young 40:b77a8c10c76d 13 * PARTICULAR PURPOSE.
Alex Young 40:b77a8c10c76d 14 */
Alex Young 40:b77a8c10c76d 15
Alex Young 40:b77a8c10c76d 16 #include "xsdeviceid.h"
Alex Young 40:b77a8c10c76d 17
Alex Young 40:b77a8c10c76d 18 /*!
Alex Young 40:b77a8c10c76d 19 * \brief Return true if device ID corresponds to a MTi-1 series device.
Alex Young 40:b77a8c10c76d 20 */
Alex Young 40:b77a8c10c76d 21 bool XsDeviceId_isMtMk4_X(uint32_t deviceId)
Alex Young 40:b77a8c10c76d 22 {
Alex Young 40:b77a8c10c76d 23 uint8_t deviceSeries = (deviceId >> 20) & 0xF;
Alex Young 40:b77a8c10c76d 24 return ((deviceSeries == 0x8) || (deviceSeries == 0xC));
Alex Young 40:b77a8c10c76d 25 }
Alex Young 40:b77a8c10c76d 26
Alex Young 40:b77a8c10c76d 27 /*!
Alex Young 40:b77a8c10c76d 28 * \brief Get a string describing the function of the MTi device.
Alex Young 40:b77a8c10c76d 29 */
Alex Young 40:b77a8c10c76d 30 char const* XsDeviceId_functionDescription(enum DeviceFunction function)
Alex Young 40:b77a8c10c76d 31 {
Alex Young 40:b77a8c10c76d 32 switch (function)
Alex Young 40:b77a8c10c76d 33 {
Alex Young 40:b77a8c10c76d 34 case DF_IMU:
Alex Young 40:b77a8c10c76d 35 return "Inertial Measurement Unit";
Alex Young 40:b77a8c10c76d 36
Alex Young 40:b77a8c10c76d 37 case DF_VRU:
Alex Young 40:b77a8c10c76d 38 return "Vertical Reference Unit";
Alex Young 40:b77a8c10c76d 39
Alex Young 40:b77a8c10c76d 40 case DF_AHRS:
Alex Young 40:b77a8c10c76d 41 return "Attitude Heading Reference System";
Alex Young 40:b77a8c10c76d 42 }
Alex Young 40:b77a8c10c76d 43
Alex Young 40:b77a8c10c76d 44 return "Unknown device function";
Alex Young 40:b77a8c10c76d 45 }
Alex Young 40:b77a8c10c76d 46