Xsens.h
Go to the documentation of this file.
1/*
2 * Xsens.h
3 *
4 * Created on: Mar 17, 2014
5 * Author: gonzalez
6 */
7
8#pragma once
9
10#include "../IMUState.h"
11#include "../Includes.h"
12
13#ifdef _IMU_USE_XSENS_DEVICE_
14
15#include "XsensMTiModule.h"
16
17namespace IMU::Xsens
18{
20 {
22 {
23 memset(m_Data, 0, sizeof(unsigned char) * MAXMSGLEN);
24 }
25
27 unsigned char m_Data[MAXMSGLEN];
29 };
30} // namespace IMU::Xsens
31
32#endif
#define MAXMSGLEN
unsigned char m_Data[MAXMSGLEN]
Definition Xsens.h:27