Statistics
| Branch: | Tag: | Revision:

amiro-os / core / inc / aos_confcheck.h @ 9ebb11a9

History | View | Annotate | Download (3.146 KB)

1 e545e620 Thomas Schöpping
/*
2
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
3
Copyright (C) 2016..2018  Thomas Schöpping et al.
4

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 e545e620 Thomas Schöpping
#ifndef _AMIROOS_CONFCHECK_H_
28
#define _AMIROOS_CONFCHECK_H_
29
30
#include <aosconf.h>
31
32
/*
33
 * Kernel parameters and options
34
 */
35
36 cb835a3e Thomas Schöpping
#ifndef AMIROOS_CFG_DBG
37
  #error "AMIROOS_CFG_DBG not defined in aosconf.h"
38
#endif
39
40 e545e620 Thomas Schöpping
#ifndef AMIROOS_CFG_TESTS_ENABLE
41
  #error "AMIROOS_CFG_TESTS_ENABLE not defined in aosconf.h"
42
#endif
43
44
#ifndef AMIROOS_CFG_PROFILE
45
  #error "AMIROOS_CFG_PROFILE not defined in aosconf.h"
46
#endif
47
48
#ifndef AMIROOS_CFG_MAIN_LOOP_TIMEOUT
49
  #error "AMIROOS_CFG_MAIN_LOOP_TIMEOUT not defined in aosconf.h"
50
#endif
51
52
/*
53 6b53f6bf Thomas Schöpping
 * SSSP parameters and options
54
 */
55
56 9ebb11a9 Thomas Schöpping
#ifndef AMIROOS_CFG_SSSP_ENABLE
57
  #error "AMIROOS_CFG_SSSP_ENABLE not defined in aosconf.h"
58 6b53f6bf Thomas Schöpping
#endif
59
60 9ebb11a9 Thomas Schöpping
# if (AMIROOS_CFG_SSSP_ENABLE == true)
61 933df08e Thomas Schöpping
62 9ebb11a9 Thomas Schöpping
  #ifndef AMIROOS_CFG_SSSP_MASTER
63
    #error "AMIROOS_CFG_SSSP_MASTER not defined in aosconf.h"
64
  #endif
65 933df08e Thomas Schöpping
66 9ebb11a9 Thomas Schöpping
  #ifndef AMIROOS_CFG_SSSP_STACK_START
67
    #error "AMIROOS_CFG_SSSP_STACK_START not defined in aosconf.h"
68 933df08e Thomas Schöpping
  #endif
69
70 9ebb11a9 Thomas Schöpping
  #ifndef AMIROOS_CFG_SSSP_STACK_END
71
    #error "AMIROOS_CFG_SSSP_STACK_END not defined in aosconf.h"
72
  #endif
73
74
  #if (AMIROOS_CFG_SSSP_STACK_START == true) && (AMIROOS_CFG_SSSP_STACK_END == true)
75
    #warning "AMIROOS_CFG_SSSP_STACK_START and AMIROOS_CFG_SSSP_STACK_END both enabled in aosconf.h"
76
    #if (AMIROOS_CFG_SSSP_MASTER != true)
77
      #error "AMIROOS_CFG_SSSP_MASTER must be enabled in this case"
78
    #endif
79
  #endif
80
81
  #ifndef AMIROOS_CFG_SSSP_SIGNALDELAY
82
    #error "AMIROOS_CFG_SSSP_SIGNALDELAY not defined in aosconf.h"
83
  #endif
84
85
  #ifndef AMIROOS_CFG_SSSP_SYSSYNCPERIOD
86
    #error "AMIROOS_CFG_SSSP_SYSSYNCPERIOD not defined in aosconf.h"
87
  #endif
88 933df08e Thomas Schöpping
89 6b53f6bf Thomas Schöpping
#endif
90
91
/*
92 e545e620 Thomas Schöpping
 * System shell options
93
 */
94
95
#ifndef AMIROOS_CFG_SHELL_ENABLE
96
  #error "AMIROOS_CFG_SHELL_ENABLE not defined in aosconf.h"
97
#endif
98
99
#if (AMIROOS_CFG_SHELL_ENABLE == true)
100
101
  #ifndef AMIROOS_CFG_SHELL_STACKSIZE
102
    #error "AMIROOS_CFG_SHELL_STACKSIZE not defined in aosconf.h"
103
  #endif
104
105 cb835a3e Thomas Schöpping
  #ifndef AMIROOS_CFG_SHELL_THREADPRIO
106
    #error "AMIROOS_CFG_SHELL_THREADPRIO not defined in aosconf.h"
107
  #endif
108
109 e545e620 Thomas Schöpping
  #ifndef AMIROOS_CFG_SHELL_LINEWIDTH
110
    #error "AMIROOS_CFG_SHELL_LINEWIDTH not defined in aosconf.h"
111
  #endif
112
113
  #ifndef AMIROOS_CFG_SHELL_MAXARGS
114
    #error "AMIROOS_CFG_SHELL_MAXARGS not defined in aosconf.h"
115
  #endif
116
117
#endif /* AMIROOS_CFG_SHELL_ENABLE == true */
118
119
#endif /* _AMIROOS_CONFCHECK_H_ */
120 53710ca3 Marc Rothmann
121
/** @} */