-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkfly_defs.h
68 lines (54 loc) · 2.04 KB
/
kfly_defs.h
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
#ifndef __KFLY_DEFS_H
#define __KFLY_DEFS_H
/*===========================================================================*/
/* Global includes. */
/*===========================================================================*/
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
/*===========================================================================*/
/* Global definitions. */
/*===========================================================================*/
/**
* @brief Setting for max supported number of inputs.
*/
#define RCINPUT_MAX_NUMBER_OF_INPUTS 16
/*===========================================================================*/
/* Global data structures and types. */
/*===========================================================================*/
/**
* @brief Definition of a 1-bit bool struct.
*/
typedef struct PACKED_VAR {
bool value : 1;
} bool1_t;
/**
* @brief Definition of a 8-bit bool struct.
*/
typedef struct PACKED_VAR {
bool value : 1;
uint32_t __reserved : 7;
} bool8_t;
/**
* @brief Definition of a 16-bit bool struct.
*/
typedef struct PACKED_VAR {
bool value : 1;
uint32_t __reserved : 15;
} bool16_t;
/**
* @brief Definition of a 32-bit bool struct.
*/
typedef struct PACKED_VAR {
bool value : 1;
uint32_t __reserved : 31;
} bool32_t;
/*===========================================================================*/
/* Global macros. */
/*===========================================================================*/
/* Simplification for defining unused parameters. */
#define UNUSED(expr) do { (void)(expr); } while (0)
/*===========================================================================*/
/* Global inline functions. */
/*===========================================================================*/
#endif