ISF
2.2 rev 5
Intelligent Sensing Framework for Kinetis with Processor Expert
Main Page
Modules
Data Structures
Files
File List
Globals
basic_types.h
Go to the documentation of this file.
1
/*
2
*
3
* Copyright (c) 2015, Freescale Semiconductor, Inc.
4
*
5
*/
6
/*
7
* basic_types.h
8
*
9
* Created on: Nov 25, 2013,
10
* Author: B37804
11
*/
12
13
#ifndef BASIC_TYPES_H_
14
#define BASIC_TYPES_H_
15
16
// these re-define (but with no changes) those in MQX-Lite PE-Types.h for Kinetis
17
typedef
signed
char
int8
;
18
typedef
unsigned
char
uint8
;
19
typedef
signed
short
int
int16
;
20
typedef
unsigned
short
int
uint16
;
21
typedef
signed
long
int
int32
;
22
typedef
unsigned
long
int
uint32
;
23
24
// basic boolean values
25
#ifndef false
26
#define false (0)
27
#endif
28
#ifndef true
29
#define true (1)
30
#endif
31
#endif
/* BASIC_TYPES_H_ */
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
int8
signed char int8
Definition:
basic_types.h:17
uint8
unsigned char uint8
Definition:
basic_types.h:18
int16
signed short int int16
Definition:
basic_types.h:19
int32
signed long int int32
Definition:
basic_types.h:21
uint16
unsigned short int uint16
Definition:
basic_types.h:20
uint32
unsigned long int uint32
Definition:
basic_types.h:22
© Freescale Semiconductor, Inc. 2016. All Rights Reserved.