Statistics
| Branch: | Tag: | Revision:

amiro-os / modules / DiWheelDrive_1-1 / chconf.h @ 542939ea

History | View | Annotate | Download (4.051 KB)

1 0128be0f Marc Rothmann
/*
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 0128be0f Marc Rothmann
 *
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
/**
20 53710ca3 Marc Rothmann
 * @file    
21 0128be0f Marc Rothmann
 * @brief   ChibiOS Configuration file for the DiWheelDrive v1.1 module.
22
 * @details Contains the application specific kernel settings.
23
 *
24 53710ca3 Marc Rothmann
 * @addtogroup diwheeldrive_ch_config
25 0128be0f Marc Rothmann
 * @details Kernel related settings and hooks.
26
 * @{
27
 */
28
29
#ifndef CHCONF_H
30
#define CHCONF_H
31
32 1e5f7648 Thomas Schöpping
#include <aosconf.h>
33
34 0128be0f Marc Rothmann
/*===========================================================================*/
35
/**
36
 * @name System timers settings
37
 * @{
38
 */
39
/*===========================================================================*/
40
41
/**
42
 * @brief   System time counter resolution.
43
 * @note    Allowed values are 16 or 32 bits.
44
 */
45
#if !defined(CH_CFG_ST_RESOLUTION)
46 fa64dbd6 Thomas Schöpping
#define CH_CFG_ST_RESOLUTION                    16
47 0128be0f Marc Rothmann
#endif
48
49 1e5f7648 Thomas Schöpping
// more common definition in aos_chconf.h
50 0128be0f Marc Rothmann
51
/** @} */
52
53
/*===========================================================================*/
54
/**
55
 * @name Kernel parameters and options
56
 * @{
57
 */
58
/*===========================================================================*/
59
60 1e5f7648 Thomas Schöpping
// common definitions in aos_chconf.h
61 0128be0f Marc Rothmann
62
/** @} */
63
64
/*===========================================================================*/
65
/**
66
 * @name Performance options
67
 * @{
68
 */
69
/*===========================================================================*/
70
71 1e5f7648 Thomas Schöpping
// common definitions in aos_chconf.h
72 0128be0f Marc Rothmann
73
/** @} */
74
75
/*===========================================================================*/
76
/**
77
 * @name Subsystem options
78
 * @{
79
 */
80
/*===========================================================================*/
81
82 1e5f7648 Thomas Schöpping
// common definitions in aos_chconf.h
83 0128be0f Marc Rothmann
84
/** @} */
85
86
/*===========================================================================*/
87
/**
88
 * @name Objects factory options
89
 * @{
90
 */
91
/*===========================================================================*/
92
93 1e5f7648 Thomas Schöpping
// common definitions in aos_chconf.h
94 0128be0f Marc Rothmann
95
/** @} */
96
97
/*===========================================================================*/
98
/**
99
 * @name Debug options
100
 * @{
101
 */
102
/*===========================================================================*/
103
104 1e5f7648 Thomas Schöpping
// common definitions in aos_chconf.h
105 0128be0f Marc Rothmann
106
/** @} */
107
108
/*===========================================================================*/
109
/**
110
 * @name Kernel hooks
111
 * @{
112
 */
113
/*===========================================================================*/
114
115 1e5f7648 Thomas Schöpping
// common definitions in aos_chconf.h
116 0128be0f Marc Rothmann
117 1e5f7648 Thomas Schöpping
/** @} */
118 0128be0f Marc Rothmann
119 1e5f7648 Thomas Schöpping
/*===========================================================================*/
120 0128be0f Marc Rothmann
/**
121 1e5f7648 Thomas Schöpping
 * @name Port-specific settings (override port settings defaulted in chcore.h).
122
 * @{
123 0128be0f Marc Rothmann
 */
124 1e5f7648 Thomas Schöpping
/*===========================================================================*/
125 0128be0f Marc Rothmann
126
/**
127 1e5f7648 Thomas Schöpping
 * @brief   NVIC VTOR initialization offset.
128
 * @details On initialization, the code at this address in the flash memory will be executed.
129 0128be0f Marc Rothmann
 */
130 fa64dbd6 Thomas Schöpping
#define CORTEX_VTOR_INIT                        0x00006000U
131 0128be0f Marc Rothmann
132 732a4657 Thomas Schöpping
/**
133
 * @brief   Flag to enable/disable sleep mode when the system is idle.
134
 */
135
#define CORTEX_ENABLE_WFI_IDLE                  TRUE
136
137 1e5f7648 Thomas Schöpping
/** @} */
138 0128be0f Marc Rothmann
139 1e5f7648 Thomas Schöpping
/*===========================================================================*/
140 0128be0f Marc Rothmann
/**
141 1e5f7648 Thomas Schöpping
 * @name other
142
 * @{
143 0128be0f Marc Rothmann
 */
144 1e5f7648 Thomas Schöpping
/*===========================================================================*/
145 0128be0f Marc Rothmann
146 1e5f7648 Thomas Schöpping
// common definitions in aos_chconf.h
147 0128be0f Marc Rothmann
148
/** @} */
149
150 1e5f7648 Thomas Schöpping
#include <aos_chconf.h>
151 0128be0f Marc Rothmann
152
#endif  /* CHCONF_H */
153
154
/** @} */