eLooM for STM32 application  v3.3.0
Loading...
Searching...
No Matches
systypes.h
Go to the documentation of this file.
1
23#ifndef SYSTYPES_H_
24#define SYSTYPES_H_
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30#include "stdbool.h"
31
32/* redefine the boolean_t to use the standard C bool for backward compatibility */
33
34#define boolean_t bool
35
36#ifndef TRUE
37#define TRUE true
38#endif
39
40#ifndef FALSE
41#define FALSE false
42#endif
43
44typedef void (*tx_entry_function_t)(unsigned long nParam);
45
46#ifdef __cplusplus
47}
48#endif
49
50
51#endif /* SYSTYPES_H_ */