amiro-os / core / inc / aos_confcheck.h @ 2a9f9ad7
History | View | Annotate | Download (5.885 KB)
1 | e545e620 | Thomas Schöpping | /*
|
---|---|---|---|
2 | AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
|
||
3 | 84f0ce9e | Thomas Schöpping | Copyright (C) 2016..2019 Thomas Schöpping et al.
|
4 | e545e620 | Thomas Schöpping | |
5 | This program is free software: you can redistribute it and/or modify
|
||
6 | it under the terms of the GNU General Public License as published by
|
||
7 | the Free Software Foundation, either version 3 of the License, or
|
||
8 | (at your option) any later version.
|
||
9 | |||
10 | This program is distributed in the hope that it will be useful,
|
||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
13 | GNU General Public License for more details.
|
||
14 | |||
15 | You should have received a copy of the GNU General Public License
|
||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
17 | */
|
||
18 | |||
19 | 53710ca3 | Marc Rothmann | /**
|
20 | * @file aos_confcheck.h
|
||
21 | * @brief Header that checks whether all necessary configurations are correct.
|
||
22 | *
|
||
23 | * @addtogroup aos_system
|
||
24 | * @{
|
||
25 | */
|
||
26 | |||
27 | 6ff06bbf | Thomas Schöpping | #ifndef AMIROOS_CONFCHECK_H
|
28 | #define AMIROOS_CONFCHECK_H
|
||
29 | e545e620 | Thomas Schöpping | |
30 | 3940ba8a | Thomas Schöpping | #include <amiroos.h> |
31 | e545e620 | Thomas Schöpping | |
32 | f3ac1c96 | Thomas Schöpping | /******************************************************************************/
|
33 | /* CONSTANTS */
|
||
34 | /******************************************************************************/
|
||
35 | |||
36 | /******************************************************************************/
|
||
37 | /* SETTINGS */
|
||
38 | /******************************************************************************/
|
||
39 | |||
40 | /******************************************************************************/
|
||
41 | /* CHECKS */
|
||
42 | /******************************************************************************/
|
||
43 | |||
44 | /* kernel parameters and options */
|
||
45 | e545e620 | Thomas Schöpping | |
46 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_DBG)
|
47 | cb835a3e | Thomas Schöpping | #error "AMIROOS_CFG_DBG not defined in aosconf.h" |
48 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_DBG) */ |
49 | cb835a3e | Thomas Schöpping | |
50 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_TESTS_ENABLE)
|
51 | e545e620 | Thomas Schöpping | #error "AMIROOS_CFG_TESTS_ENABLE not defined in aosconf.h" |
52 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_TESTS_ENABLE) */ |
53 | e545e620 | Thomas Schöpping | |
54 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_PROFILE)
|
55 | e545e620 | Thomas Schöpping | #error "AMIROOS_CFG_PROFILE not defined in aosconf.h" |
56 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_PROFILE) */ |
57 | e545e620 | Thomas Schöpping | |
58 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_MAIN_LOOP_TIMEOUT)
|
59 | e545e620 | Thomas Schöpping | #error "AMIROOS_CFG_MAIN_LOOP_TIMEOUT not defined in aosconf.h" |
60 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_MAIN_LOOP_TIMEOUT) */ |
61 | e545e620 | Thomas Schöpping | |
62 | f3ac1c96 | Thomas Schöpping | /* SSSP parameters and options */
|
63 | 6b53f6bf | Thomas Schöpping | |
64 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_SSSP_ENABLE)
|
65 | 9ebb11a9 | Thomas Schöpping | #error "AMIROOS_CFG_SSSP_ENABLE not defined in aosconf.h" |
66 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_SSSP_ENABLE) */ |
67 | 6b53f6bf | Thomas Schöpping | |
68 | 9ebb11a9 | Thomas Schöpping | # if (AMIROOS_CFG_SSSP_ENABLE == true) |
69 | 933df08e | Thomas Schöpping | |
70 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_SSSP_MASTER)
|
71 | 9ebb11a9 | Thomas Schöpping | #error "AMIROOS_CFG_SSSP_MASTER not defined in aosconf.h" |
72 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_SSSP_MASTER) */ |
73 | 933df08e | Thomas Schöpping | |
74 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_SSSP_STACK_START)
|
75 | 9ebb11a9 | Thomas Schöpping | #error "AMIROOS_CFG_SSSP_STACK_START not defined in aosconf.h" |
76 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_SSSP_STACK_START) */ |
77 | 933df08e | Thomas Schöpping | |
78 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_SSSP_STACK_END)
|
79 | 9ebb11a9 | Thomas Schöpping | #error "AMIROOS_CFG_SSSP_STACK_END not defined in aosconf.h" |
80 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_SSSP_STACK_END) */ |
81 | 9ebb11a9 | Thomas Schöpping | |
82 | #if (AMIROOS_CFG_SSSP_STACK_START == true) && (AMIROOS_CFG_SSSP_STACK_END == true) |
||
83 | #warning "AMIROOS_CFG_SSSP_STACK_START and AMIROOS_CFG_SSSP_STACK_END both enabled in aosconf.h" |
||
84 | #if (AMIROOS_CFG_SSSP_MASTER != true) |
||
85 | #error "AMIROOS_CFG_SSSP_MASTER must be enabled in this case" |
||
86 | 7de0cc90 | Thomas Schöpping | #endif /* (AMIROOS_CFG_SSSP_MASTER != true) */ |
87 | #endif /* (AMIROOS_CFG_SSSP_STACK_START == true) && (AMIROOS_CFG_SSSP_STACK_END == true) */ |
||
88 | 9ebb11a9 | Thomas Schöpping | |
89 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_SSSP_SIGNALDELAY)
|
90 | 9ebb11a9 | Thomas Schöpping | #error "AMIROOS_CFG_SSSP_SIGNALDELAY not defined in aosconf.h" |
91 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_SSSP_SIGNALDELAY) */ |
92 | 9ebb11a9 | Thomas Schöpping | |
93 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_SSSP_SYSSYNCPERIOD)
|
94 | 9ebb11a9 | Thomas Schöpping | #error "AMIROOS_CFG_SSSP_SYSSYNCPERIOD not defined in aosconf.h" |
95 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_SSSP_SYSSYNCPERIOD) */ |
96 | 933df08e | Thomas Schöpping | |
97 | 7de0cc90 | Thomas Schöpping | #endif /* (AMIROOS_CFG_SSSP_ENABLE == true) */ |
98 | 6b53f6bf | Thomas Schöpping | |
99 | f3ac1c96 | Thomas Schöpping | /* system shell options */
|
100 | e545e620 | Thomas Schöpping | |
101 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_SHELL_ENABLE)
|
102 | e545e620 | Thomas Schöpping | #error "AMIROOS_CFG_SHELL_ENABLE not defined in aosconf.h" |
103 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_SHELL_ENABLE) */ |
104 | e545e620 | Thomas Schöpping | |
105 | #if (AMIROOS_CFG_SHELL_ENABLE == true) |
||
106 | |||
107 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_SHELL_STACKSIZE)
|
108 | e545e620 | Thomas Schöpping | #error "AMIROOS_CFG_SHELL_STACKSIZE not defined in aosconf.h" |
109 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_SHELL_STACKSIZE) */ |
110 | e545e620 | Thomas Schöpping | |
111 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_SHELL_THREADPRIO)
|
112 | cb835a3e | Thomas Schöpping | #error "AMIROOS_CFG_SHELL_THREADPRIO not defined in aosconf.h" |
113 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_SHELL_THREADPRIO) */ |
114 | cb835a3e | Thomas Schöpping | |
115 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_SHELL_LINEWIDTH)
|
116 | e545e620 | Thomas Schöpping | #error "AMIROOS_CFG_SHELL_LINEWIDTH not defined in aosconf.h" |
117 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_SHELL_LINEWIDTH) */ |
118 | e545e620 | Thomas Schöpping | |
119 | 7de0cc90 | Thomas Schöpping | #if !defined(AMIROOS_CFG_SHELL_MAXARGS)
|
120 | e545e620 | Thomas Schöpping | #error "AMIROOS_CFG_SHELL_MAXARGS not defined in aosconf.h" |
121 | 7de0cc90 | Thomas Schöpping | #endif /* !defined(AMIROOS_CFG_SHELL_MAXARGS) */ |
122 | e545e620 | Thomas Schöpping | |
123 | 7de0cc90 | Thomas Schöpping | #else /* (AMIROOS_CFG_SHELL_ENABLE == true) */ |
124 | 2dd2e257 | Thomas Schöpping | |
125 | #if (AMIROOS_CFG_TESTS_ENABLE == true) |
||
126 | #pragma message "AMiRo-OS shell enabled implicitely via AMIROOS_CFG_TESTS_ENABLE" |
||
127 | 7de0cc90 | Thomas Schöpping | #endif /* (AMIROOS_CFG_TESTS_ENABLE == true) */ |
128 | 2dd2e257 | Thomas Schöpping | |
129 | 7de0cc90 | Thomas Schöpping | #endif /* (AMIROOS_CFG_SHELL_ENABLE == true) */ |
130 | e545e620 | Thomas Schöpping | |
131 | f3ac1c96 | Thomas Schöpping | /******************************************************************************/
|
132 | /* DATA STRUCTURES AND TYPES */
|
||
133 | /******************************************************************************/
|
||
134 | |||
135 | /******************************************************************************/
|
||
136 | /* MACROS */
|
||
137 | /******************************************************************************/
|
||
138 | |||
139 | /******************************************************************************/
|
||
140 | /* EXTERN DECLARATIONS */
|
||
141 | /******************************************************************************/
|
||
142 | |||
143 | /******************************************************************************/
|
||
144 | /* INLINE FUNCTIONS */
|
||
145 | /******************************************************************************/
|
||
146 | |||
147 | 6ff06bbf | Thomas Schöpping | #endif /* AMIROOS_CONFCHECK_H */ |
148 | 53710ca3 | Marc Rothmann | |
149 | /** @} */ |