Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ab340c664a497d579f9ab9647114f678b8e3cd4b (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2011 protos software gmbh (http://www.protos.de).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * CONTRIBUTORS:
 * 		Thomas Schuetz (initial contribution), Thomas Jung
 *
 *******************************************************************************/

#ifndef _ETDATATYPES_H_
#define _ETDATATYPES_H_

/*
 * typedefs for platform specific datatypes
 * Version for 32 Bit Controllers like ARM Cortex M
 */

#define ET_INT64
#define ET_FLOAT32
/* not available on this platform */
/*#define ET_FLOAT64 */


#include "etStdDatatypes.h"

#include <stdio.h>

/*--- Data types for room.basic.types */

/*-----------------------------------------------------------*/

/*--- Data types for runtime */

#define etALIGNMENT		4	/* power of 2 and >= sizeof(int) ! */

typedef FILE* etFileHandle;

/* types for osal */
typedef etUInt32 etOSMutexData;
typedef etUInt32 etOSSemaData;
typedef etUInt32 etOSThreadData;
typedef etUInt32 etOSThreadId;
typedef etUInt32 etOSTimerData;
typedef etUInt32 etOSTimerId;

/*-----------------------------------------------------------*/

#endif /* _DATATYPES_H_ */

Back to the top