MIP_SDK  v3.0.0
MicroStrain Communications Library for embedded systems
platform.h
Go to the documentation of this file.
1 #pragma once
2 
3 #if defined _WIN32
4 #define MICROSTRAIN_PLATFORM_WINDOWS
5 #define MICROSTRAIN_PLATFORM_DESKTOP
6 #elif defined __APPLE__
7 #define MICROSTRAIN_PLATFORM_APPLE
8 #define MICROSTRAIN_PLATFORM_DESKTOP
9 #elif defined __linux__
10 #define MICROSTRAIN_PLATFORM_LINUX
11 #define MICROSTRAIN_PLATFORM_DESKTOP
12 #else
13 #define MICROSTRAIN_PLATFORM_OTHER
14 #endif