File tree Expand file tree Collapse file tree 3 files changed +3
-79
lines changed
features/FEATURE_BLE/targets
TARGET_CORDIO/stack/cordio_stack/ws-core/sw/wsf/generic
TARGET_Maxim/exactLE/wsf/generic
targets/TARGET_ARM_SSG/TARGET_BEETLE/cordio/include/wsf/generic Expand file tree Collapse file tree 3 files changed +3
-79
lines changed Original file line number Diff line number Diff line change 25
25
#ifndef WSF_TYPES_H
26
26
#define WSF_TYPES_H
27
27
28
- /**************************************************************************************************
29
- Macros
30
- **************************************************************************************************/
31
-
32
- #ifndef NULL
33
- #define NULL 0
34
- #endif
35
-
36
- #ifndef TRUE
37
- #define TRUE 1
38
- #endif
39
-
40
- #ifndef FALSE
41
- #define FALSE 0
42
- #endif
43
-
44
28
/**************************************************************************************************
45
29
Data Types
46
30
**************************************************************************************************/
@@ -60,7 +44,6 @@ typedef unsigned long uint32_t;
60
44
typedef unsigned long long uint64_t ;
61
45
#endif
62
46
63
- /* Boolean data type */
64
- typedef uint8_t bool_t ;
47
+ #include <rtx_core_cm.h>
65
48
66
49
#endif /* WSF_TYPES_H */
Original file line number Diff line number Diff line change 22
22
#ifndef WSF_TYPES_H
23
23
#define WSF_TYPES_H
24
24
25
- /**************************************************************************************************
26
- Macros
27
- **************************************************************************************************/
28
-
29
- #ifndef NULL
30
- #define NULL 0
31
- #endif
32
-
33
- #ifndef TRUE
34
- #define TRUE 1
35
- #endif
36
-
37
- #ifndef FALSE
38
- #define FALSE 0
39
- #endif
40
-
41
- /**************************************************************************************************
42
- Data Types
43
- **************************************************************************************************/
44
-
45
- /* Integer data types */
46
- #if ((defined(__STDC_VERSION__ ) && (__STDC_VERSION__ >= 199901L )) && \
47
- (__ICC8051__ == 0 )) || defined(__CC_ARM ) || \
48
- (defined(__ARMCC_VERSION ) && (__ARMCC_VERSION >= 6010050 )) || \
49
- defined(__IAR_SYSTEMS_ICC__ )
50
- #include <stdint.h>
51
- #else
52
- typedef signed char int8_t ;
53
- typedef unsigned char uint8_t ;
54
- typedef signed short int16_t ;
55
- typedef unsigned short uint16_t ;
56
- typedef signed long int32_t ;
57
- typedef unsigned long uint32_t ;
58
- #endif
59
-
60
- /* Boolean data type */
61
- typedef uint8_t bool_t ;
25
+ #include <rtx_core_cm.h>
62
26
63
27
#endif /* WSF_TYPES_H */
Original file line number Diff line number Diff line change 22
22
#ifndef WSF_TYPES_H
23
23
#define WSF_TYPES_H
24
24
25
- /**************************************************************************************************
26
- Macros
27
- **************************************************************************************************/
28
-
29
- #ifndef NULL
30
- #define NULL 0
31
- #endif
32
-
33
- #ifndef TRUE
34
- #define TRUE 1
35
- #endif
36
-
37
- #ifndef FALSE
38
- #define FALSE 0
39
- #endif
40
-
41
- /**************************************************************************************************
42
- Data Types
43
- **************************************************************************************************/
44
-
45
- /* Integer data types */
46
25
#include <stdint.h>
47
-
48
- /* Boolean data type */
49
- typedef uint8_t bool_t ;
26
+ #include <rtx_core_cm.h>
50
27
51
28
#endif /* WSF_TYPES_H */
You can’t perform that action at this time.
0 commit comments