Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
Platform.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2//
3// ActiveParts (AP) and the corresponding Data Flow Framework (DFF) is invented and designed by Jakob Daescher.
4// ANY USE OF THIS CODE CONSTITUTES ACCEPTANCE OF THE TERMS OF THE COPYRIGHT NOTICE.
5// ===================================================================================================
6// COPYRIGHT NOTICE
7// ===================================================================================================
8// Copyright (C) 2005-2075, IMT Information Management Technology AG, 9470 Buchs, Switzerland
9// All rights reserved.
10// This code is proprietary software of IMT Information Management Technology AG (hereinafter: "IMT").
11// Proprietary software is computer software licensed under exclusive legal right of IMT.
12//
13// The licensee is given the irrevocable, perpetual, worldwide, non-exclusive right and license to use,
14// execute and reproduce the software in binary form within the licensed products.
15//
16// Redistribution and use in source forms, without modification, are permitted provided that the following conditions are met:
17// (1) Copying of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
18// (2) Copying of source code is only allowed for regulatory documentation and archiving purposes
19// (3) Redistributions in binary form must reproduce the above copyright notice,
20// this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
21//
22// IMT provide no reassurances that the source code provided does not infringe
23// any patent, copyright, or any other intellectual property rights of third parties.
24// IMT disclaim any liability to any recipient for claims brought against
25// recipient by any third party for infringement of that parties intellectual property rights.
26//
27// THIS SOFTWARE IS PROVIDED BY IMT AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
28// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29// IN NO EVENT SHALL IMT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCURE-MENT OF SUBSTITUTE GOODS OR SERVICES;
31// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
33// IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34// ===================================================================================================
35
36#ifndef IMT_BASE_CORE_PLATFORM_PLATFORM_H
37#define IMT_BASE_CORE_PLATFORM_PLATFORM_H
38
39// clang-format off
40
41// Definition for platform specific settings.
42// Include this file in every header.
43
44// General Defines
45// Define the following preprocessor defines for the given build configurations:
46// Debug: -
47// Release: NDEBUG
48// Unittest: _UNITTEST
49//
50// The following preprocessor defines can be defined in all configurations if needed:
51// USE_STL if STL support is required.
52// USE_RTTI if real time type identification support is required.
53// OMIT_HARDWARE_EXCEPTION_HANDLERS Omits the definition of exception handlers in the HAL so they can be defined in the application (or BSP)
54//
55// Note: The _DEBUG and DEBUG define wil be set automatically in this header based on the defines above.
56
57// Overview of pre-defined Compiler Macros:
58// https://sourceforge.net/p/predef/wiki/Compilers/
59
60// Platform Defines
61// Use ONE of the following platform defines:
62//
63// Desktop Windows => _WINDOWS
64// The key identifier for a "Desktop" Windows OS is _WINDOWS.
65// Define the following Preprocessor Defines on Visual Studio > Project Properties > Preprocessor Defines: _WINDOWS;WIN32
66//
67// IAR Systems Workbench => __IAR_SYSTEMS_ICC__ (auto)
68// The IAR platform will automatically define __IAR_SYSTEMS_ICC__.
69// IAR can have several target devices with different symbols defined by IAR IDE.
70// Supported targets on IAR IDE:
71// Target: __ICCARM__ IAR ARM C/C++ cross compiler
72//
73// QNX Momentics => __QNXNTO__ (auto)
74// The QNX Momentix IDE will automatically define __QNXNTO__.
75//
76// Keil uVision IDE => __CC_ARM (auto)
77// The Keil uVision IDE will automatically define __CC_ARM.
78//
79// Mingw32 Toolchain => __MINGW32__
80// Uses the GNU Toolchain if you use GCC (__GNUC__)
81// other toolchains are not supported.
82//
83// STM CubeIDE => __STMCUBE
84// STM32 Eclipse based Toolchain.
85//
86// Espressif IDF => ESP_PLATFORM
87// Espressif IDF is a __GNUC__ based Toolchain which uses cmake for build/link process.
88// Add 'add_compile_definitions(ESP_PLATFORM)' in the main cmake file
89//
90// To provide a new platform extend the Platform.h file.
91
92// Include the application defined configuration file.
93// Create an Application specific PlatformConfigApp.h File and copy this to the "\Imt.Base.Core.Platform" folder where this file is located.
94// All needed Application Platform specific defines should be located in that file.
96
97// AXIVION FILE Style AutosarC++19_03-A2.7.3: File exempted from this rule, as file includes platform specific constructs
98// AXIVION FILE Style AutosarC++19_03-A2.8.1: File exempted from this rule, as file includes platform specific constructs
99// AXIVION FILE Style AutosarC++19_03-A2.8.2: File exempted from this rule, as file includes platform specific constructs
100// AXIVION FILE Style AutosarC++19_03-A7.1.6: File exempted from this rule, required construct
101// AXIVION FILE Style AutosarC++19_03-A16.0.1: File exempted from this rule, as file includes platform specific constructs
102// AXIVION FILE Style AutosarC++19_03-A16.6.1: File exempted from this rule, as file includes platform specific constructs
103// AXIVION FILE Style AutosarC++19_03-A16.7.1: File exempted from this rule, as file includes platform specific constructs
104// AXIVION FILE Style AutosarC++19_03-A17.0.1: File exempted from this rule, as file includes platform specific constructs
105// AXIVION FILE Style AutosarC++19_03-A18.0.1: File exempted from this rule, as file includes platform specific constructs
106// AXIVION FILE Style AutosarC++19_03-M7.3.1: File exempted from this rule, as file includes platform specific constructs
107// AXIVION FILE Style AutosarC++19_03-M16.0.1: File exempted from this rule, as file includes platform specific constructs
108// AXIVION FILE Style AutosarC++19_03-M27.0.1: File exempted from this rule, as file includes platform specific constructs
109// AXIVION FILE Style CodingStyle-SourceFileNaming: File exempted from this rule, as file includes platform specific constructs
110// AXIVION FILE Style CodingStyle-Naming.Macro: File exempted from this rule, as file includes platform specific constructs
111// AXIVION FILE Style CodingStyle-Naming.UserType: File exempted from this rule, as file includes platform specific constructs
112// AXIVION FILE Style CodingStyle-Naming.Typedef: File exempted from this rule, as file includes platform specific constructs
113
115
116// Imt.Base V4.0 requires C++11 or newer
117// TODO enable check when VS2015 dependency is finally removed in V4.1
118// static_assert(CppVersion::isCpp14OrNewer(), "Imt.Base only supports C++14 or newer");
119
120//
121// Debug macros
122//
123#ifdef NDEBUG
124 #ifdef _DEBUG
125 #undef _DEBUG
126 #endif
127 #ifdef DEBUG
128 #undef DEBUG
129 #endif
130#else
131 #ifndef _DEBUG
132 #define _DEBUG
133 #endif
134 #ifndef DEBUG
135 #define DEBUG
136 #endif
137#endif
138
139//
140// Use STL (only with C++ compiler)
141//
142#if defined(USE_STL) && defined(__cplusplus)
143 // Include STL stuff
144 #include <limits>
145
146 // RTTI, runtime type information
147 #ifdef USE_RTTI
148 #include <typeinfo>
149 #endif // USE_RTTI
150
151 #include <string>
152 #include <sstream>
153
154#endif // USE_STL && __cplusplus
155
156#if defined(USE_STL) && defined(_WINDOWS)
157#include <float.h>
158#endif // USE_STL && _WINDOWS
159
160// Generic Dataflow runtime defines
163
164// Toolchain/Platform specific Dataflow runtime defines
165
166#if defined(_WINDOWS)
167 // Using WINDOWS (WIN32) and visual studio
169#elif defined(__IAR_SYSTEMS_ICC__)
170 // Using IAR
172#elif defined(__CC_ARM)
173 // Using uVision (Keil)
175#elif defined(__MINGW32__)
176 #if defined(__GNUC__)
177 // MinGW32
179 #else
180 // This platform is currently not supported
181 #error Check your preprocessor definitions!
182 #endif
183#elif defined(__WIN32_GNU__)
184 // Win32 GNU
185 #include "PlatformMinGW32/Win32GNU_Platform.h"
186#elif defined(__STMCUBE)
187 // STM32 Cube IDE
189#elif defined(__GNUC__)
190 // Platforms using a GNU compiler
191 #if defined(__gnu_linux__)
192 // Linux SDK GCC for c/c++ compiler
194 #elif defined(ESP_PLATFORM)
195 // Linux SDK GCC for c/c++ compiler
197 #else
198 // Zepyhr SDK GCC for c/c++ compiler
200 #endif
201#else
202 // This platform is currently not supported
203 #error Check your preprocessor definitions!
204#endif
205
206// clang-format on
207
208#endif // IMT_BASE_CORE_PLATFORM_PLATFORM_H