summaryrefslogtreecommitdiff
path: root/source/LCM/include/t_basicdefinitions.h
blob: 4d5b0eead4c634d0802be4e0a3e4c59114d07df4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
#ifndef INCLUSION_GUARD_T_BASICDEFINITIONS_H
#define INCLUSION_GUARD_T_BASICDEFINITIONS_H

/******************************************************************************
 * Copyright (C) ST-Ericsson SA 2011
 * License terms: 3-clause BSD license
*******************************************************************************
*
* $Workfile: t_basicdefinitions.h $
*
*******************************************************************************
*
* DESCRIPTION:
*
*     Portable types used for a consistent target platform.
*     The name should make it totally clear as to what they are used for.
*
*     For calculations:
*     -----------------
*     sint8   -   signed integer 8 bits
*     uint8   -   unsigned integer 8bits
*     sint16  -   signed integer 16 bits
*     uint16  -   unsigned integer 16 bits
*     sint32  -   signed integer 32 bits
*     uint32  -   unsigned integer 32 bits
*     MAX and MIN values for all integer types are also supported.
*
*     Unsigned integer types for other purposes than calculations:
*     ------------------------------------------------------------
*     boolean    -  TRUE or FALSE
*
*     Bitfield types to use in packed structs:
*     ----------------------------------------
*     sbitfield  -  signed bitfield
*     ubitfield  -  unsigned bitfield
*
*     Bitmasks:
*     ---------
*     BIT_0      - unsigned integer of values 0x00000001
*     ...
*     BIT_31     - unsigned integer of values 0x80000000
*
*     Enumeration:
*     ------------
*     TYPEDEF_ENUM     - This macro should be used to start the defenition of a enumerated type
*     ENUM8(t)         - uint8 enum
*     ENUM16(t)        - uint16 enum
*     ENUM32(t)        - uint32 enum
*     SIGNED_ENUM8(t)  - sint8 enum
*     SIGNED_ENUM16(t) - sint16 enum
*     SIGNED_ENUM32(t) - sint32 enum
*
******************************************************************************/

/********************
* Include files
*********************/

#include "c_compiler.h"
#include <limits.h>

/********************
* Portable data types
*********************/

#if defined(COMPILER_IAR_ARM) && (__VER__ >= 300)
#define SINT64_SUPPORTED
#define UINT64_SUPPORTED
#define INT64_BASE_TYPE   long long
#elif defined(COMPILER_ARM_ARM)
#define SINT64_SUPPORTED
#define UINT64_SUPPORTED
#define INT64_BASE_TYPE   long long
#elif defined(_WIN32)
#define SINT64_SUPPORTED
#define UINT64_SUPPORTED
#define INT64_BASE_TYPE   __int64
#elif defined(__linux__)
#define SINT64_SUPPORTED
#define UINT64_SUPPORTED
#define INT64_BASE_TYPE  long long
#else
#error "Unknown platform"
#endif


/** Type definition for a signed 8 bit data entity. */
typedef signed char sint8;
/** Type definition for an unsigned 8 bit data entity. */
typedef unsigned char uint8;
/** Type definition for a signed 16 bit data entity. */
typedef signed short sint16;
/** Type definition for an unsigned 16 bit data entity. */
typedef unsigned short uint16;
/** Type definition for a signed 32 bit data entity. */
typedef signed int sint32;
/** Type definition for an unsigned 32 bit data entity. */
#if defined(_WIN32)
typedef unsigned long uint32;
#else
typedef unsigned int uint32;
#endif

/**
 * Type definition for a signed 64 bit data entity. Only available if the switch
 * SINT64_SUPPORTED is defined.
 */
#ifdef SINT64_SUPPORTED
typedef signed INT64_BASE_TYPE sint64;
#endif

/**
 * Type definition for an unsigned 64 bit data entity. Only available if the
 * switch UINT64_SUPPORTED is defined.
 */
#ifdef UINT64_SUPPORTED
typedef unsigned INT64_BASE_TYPE uint64;
#endif

/*******************
* MAX and MIN values
********************/
/** Minimum value for an entity of type sint8 */
#define MIN_SINT8  (SCHAR_MIN)
/** Maximum value for an entity of type sint8 */
#define MAX_SINT8  (SCHAR_MAX)
/** Maximum value for an entity of type uint8 */
#define MAX_UINT8  (UCHAR_MAX)
/** Minimum value for an entity of type sint16 */
#define MIN_SINT16 (SHRT_MIN)
/** Maximum value for an entity of type sint16 */
#define MAX_SINT16 (SHRT_MAX)
/** Maximum value for an entity of type uint16 */
#define MAX_UINT16 (USHRT_MAX)
/** Minimum value for an entity of type sint32 */
#define MIN_SINT32 (LONG_MIN)
/** Maximum value for an entity of type sint32 */
#define MAX_SINT32 (LONG_MAX)
/** Maximum value for an entity of type uint32 */
#define MAX_UINT32 (ULONG_MAX)


#ifdef SINT64_SUPPORTED
/**
 * Minimum value for an entity of type sint64. Only available if the switch
 * SINT64_SUPPORTED is defined.
 */
#define MIN_SINT64 (-0x8000000000000000)
/**
 * Maximum value for an entity of type sint64. Only available if the switch
 * SINT64_SUPPORTED is defined.
 */
#define MAX_SINT64 (0x7fffffffffffffff)
#endif

#ifdef UINT64_SUPPORTED
/**
 * Maximum value for an entity of type uint64. Only available if the switch
 * UINT64_SUPPORTED is defined.
 */
#define MAX_UINT64 (0xffffffffffffffff)
#endif

/********************
* boolean: TRUE/FALSE
*********************/
/** Type definition for a boolean/logical value */
typedef uint8 boolean;

#ifndef TRUE
/** Value representing the boolean/logical value false. */
#define FALSE 0
/** Value representing the boolean/logical value true. */
#define TRUE (!FALSE)
#endif

/******************************************
* Portable bitfield definitions
*******************************************/

#if defined(COMPILER_IAR_AVR) || defined(COMPILER_IAR_ARM) || defined(_WIN32) || defined(COMPILER_ARM_ARM) || defined(COMPILER_GNUC)
/** Type definition to be used when implementing bit-fields that should hold
 * signed values.
 */
typedef sint8 sbitfield;
/** Type definition to be used when implementing bit-fields that should hold
 * unsigned values.
 */
typedef uint8 ubitfield;
#elif defined(_lint)
typedef signed int  sbitfield;
typedef unsigned int  ubitfield;
#else
#error Unknown preferred bitfield definition for this compiler
#endif

/*************************
* Bit mask definitions
**************************/

/**
* This sections defines a set of masks implemented as scalar unsigned values
* that can be used to mask out bits of a scalar entity. The definitions are
* named BIT_0 through BIT_31 and each implements the unsigned value of two to
* the power of the value in the definitions name. E.g. BIT_0 implements the value of 1 while BIT_10 implements the value of 0x0400 (equals 1024 in decimal form).
*/
#define BIT_0  0x0001U
#define BIT_1  0x0002U
#define BIT_2  0x0004U
#define BIT_3  0x0008U
#define BIT_4  0x0010U
#define BIT_5  0x0020U
#define BIT_6  0x0040U
#define BIT_7  0x0080U
#define BIT_8  0x0100U
#define BIT_9  0x0200U
#define BIT_10 0x0400U
#define BIT_11 0x0800U
#define BIT_12 0x1000U
#define BIT_13 0x2000U
#define BIT_14 0x4000U
#define BIT_15 0x8000U
#define BIT_16 0x00010000UL
#define BIT_17 0x00020000UL
#define BIT_18 0x00040000UL
#define BIT_19 0x00080000UL
#define BIT_20 0x00100000UL
#define BIT_21 0x00200000UL
#define BIT_22 0x00400000UL
#define BIT_23 0x00800000UL
#define BIT_24 0x01000000UL
#define BIT_25 0x02000000UL
#define BIT_26 0x04000000UL
#define BIT_27 0x08000000UL
#define BIT_28 0x10000000UL
#define BIT_29 0x20000000UL
#define BIT_30 0x40000000UL
#define BIT_31 0x80000000UL

/*****************************
* Macro's for fixed size enums
*
* Example of use:
*
*   TYPEDEF_ENUM {
*     Def1,
*     ...,
*     Defn
*   }ENUM8 (MyEnum_t); // Or ENUM16 or ENUM32
*
******************************/
/** This macro should be used to start the definition of an enumerated type. */
#define TYPEDEF_ENUM enum
/**
 * This macro should be used to finalize the definition of an enumerated type
 * "t" compatible with the uint8 data type described in section 3.1.1.
 */
#define ENUM8(t) ;typedef uint8 t
/**
 * This macro should be used to finalize the definition of an enumerated type
 * "t" compatible with the uint16 data type described in section 3.1.1.
 */
#define ENUM16(t) ;typedef uint16 t
/**
 * This macro should be used to finalize the definition of an enumerated type
 * "t" compatible with the uint32 data type described in section 3.1.1.
 */
#define ENUM32(t) ;typedef uint32 t
/**
 * This macro should be used to finalize the definition of an enumerated type
 * "t" compatible with the sint8 data type described in section 3.1.1.
 */
#define SIGNED_ENUM8(t) ;typedef sint8 t
/**
 * This macro should be used to finalize the definition of an enumerated type
 * "t" compatible with the sint16 data type described in section 3.1.1.
 */
#define SIGNED_ENUM16(t) ;typedef sint16 t
/**
 * This macro should be used to finalize the definition of an enumerated type
 * "t" compatible with the sint32 data type described in section 3.1.1.
 */
#define SIGNED_ENUM32(t) ;typedef sint32 t

#endif // INCLUSION_GUARD_T_BASICDEFINITIONS_H