Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed-rtos mbed Xbus
Fork of MTi-1_example by
xbus/xbusutility.h
- Committer:
- Alex Young
- Date:
- 2015-05-19
- Revision:
- 18:2073072bad51
- Child:
- 27:eebe5fc884e3
File content as of revision 18:2073072bad51:
/*!
* \file
* \copyright
* Copyright (C) Xsens Technologies B.V., 2015. All rights reserved.
*
* This source code is intended for use only by Xsens Technologies BV and
* those that have explicit written permission to use it from
* Xsens Technologies BV.
*
* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
* KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
* PARTICULAR PURPOSE.
*/
#ifndef __XBUSUTILITY_H
#define __XBUSUTILITY_H
#include <stdint.h>
uint8_t const* XbusUtility_readU8(uint8_t* out, uint8_t const* in);
uint8_t const* XbusUtility_readU16(uint16_t* out, uint8_t const* in);
uint8_t const* XbusUtility_readU32(uint32_t* out, uint8_t const* in);
#endif // __XBUSUTILITY_H
