APM:Libraries
chconf.h
Go to the documentation of this file.
1 /*
2  * This file is free software: you can redistribute it and/or modify it
3  * under the terms of the GNU General Public License as published by the
4  * Free Software Foundation, either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * This file is distributed in the hope that it will be useful, but
8  * WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10  * See the GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License along
13  * with this program. If not, see <http://www.gnu.org/licenses/>.
14  *
15  * Modified for use in AP_HAL by Andrew Tridgell and Siddharth Bharat Purohit
16  */
17 
29 #pragma once
30 
31 #include "hwdef.h"
32 
33 #define _CHIBIOS_RT_CONF_
34 
35 /*===========================================================================*/
40 /*===========================================================================*/
41 
46 #ifndef CH_CFG_ST_RESOLUTION
47 #define CH_CFG_ST_RESOLUTION 32
48 #endif
49 
56 #define CH_CFG_ST_FREQUENCY 1000000
57 
66 #define CH_CFG_ST_TIMEDELTA 2
67 
68 /*
69  default to a large interrupt stack for now. We may trim this later
70  if we become confident of our interrupt handler requirements. Note
71  that we pay for this stack size in every thread, so it is quite
72  expensive in memory
73  */
74 #ifndef PORT_INT_REQUIRED_STACK
75 #define PORT_INT_REQUIRED_STACK 256
76 #endif
77 
78 
81 /*===========================================================================*/
86 /*===========================================================================*/
87 
100 #define CH_CFG_TIME_QUANTUM 0
101 
113 #define CH_CFG_MEMCORE_SIZE 0
114 
122 #define CH_CFG_NO_IDLE_THREAD FALSE
123 
126 /*===========================================================================*/
131 /*===========================================================================*/
132 
141 #define CH_CFG_OPTIMIZE_SPEED TRUE
142 
145 /*===========================================================================*/
150 /*===========================================================================*/
151 
159 #define CH_CFG_USE_TM TRUE
160 
167 #define CH_CFG_USE_REGISTRY TRUE
168 
176 #define CH_CFG_USE_WAITEXIT TRUE
177 
184 #define CH_CFG_USE_SEMAPHORES TRUE
185 
195 #define CH_CFG_USE_SEMAPHORES_PRIORITY FALSE
196 
203 #define CH_CFG_USE_MUTEXES TRUE
204 
213 #define CH_CFG_USE_MUTEXES_RECURSIVE FALSE
214 
223 #define CH_CFG_USE_CONDVARS TRUE
224 
233 #define CH_CFG_USE_CONDVARS_TIMEOUT TRUE
234 
241 #define CH_CFG_USE_EVENTS TRUE
242 
251 #define CH_CFG_USE_EVENTS_TIMEOUT TRUE
252 
260 #define CH_CFG_USE_MESSAGES TRUE
261 
271 #define CH_CFG_USE_MESSAGES_PRIORITY FALSE
272 
281 #define CH_CFG_USE_MAILBOXES TRUE
282 
290 #define CH_CFG_USE_MEMCORE TRUE
291 
302 #define CH_CFG_USE_HEAP TRUE
303 
311 #define CH_CFG_USE_MEMPOOLS TRUE
312 
322 #define CH_CFG_USE_DYNAMIC TRUE
323 
326 /*===========================================================================*/
331 /*===========================================================================*/
332 
338 #define CH_DBG_STATISTICS TRUE
339 
347 #ifndef CH_DBG_SYSTEM_STATE_CHECK
348 #define CH_DBG_SYSTEM_STATE_CHECK FALSE
349 #endif
350 
358 #ifndef CH_DBG_ENABLE_CHECKS
359 #define CH_DBG_ENABLE_CHECKS FALSE
360 #endif
361 
362 
371 #ifndef CH_DBG_ENABLE_ASSERTS
372 #define CH_DBG_ENABLE_ASSERTS FALSE
373 #endif
374 
381 #define CH_DBG_TRACE_MASK CH_DBG_TRACE_MASK_DISABLED
382 
388 #define CH_DBG_TRACE_BUFFER_SIZE 128
389 
400 #ifndef CH_DBG_ENABLE_STACK_CHECK
401 #define CH_DBG_ENABLE_STACK_CHECK FALSE
402 #endif
403 
412 #define CH_DBG_FILL_THREADS TRUE
413 
423 #define CH_DBG_THREADS_PROFILING FALSE
424 
427 /*===========================================================================*/
432 /*===========================================================================*/
433 
438 #define CH_CFG_THREAD_EXTRA_FIELDS \
439  /* Add threads custom fields here.*/
440 
448 #define CH_CFG_THREAD_INIT_HOOK(tp) { \
449  /* Add threads initialization code here.*/ \
450 }
451 
456 #define CH_CFG_THREAD_EXIT_HOOK(tp) { \
457  /* Add threads finalization code here.*/ \
458 }
459 
464 #define CH_CFG_CONTEXT_SWITCH_HOOK(ntp, otp) { \
465  /* Context switch code here.*/ \
466 }
467 
471 #define CH_CFG_IRQ_PROLOGUE_HOOK() { \
472  /* IRQ prologue code here.*/ \
473 }
474 
478 #define CH_CFG_IRQ_EPILOGUE_HOOK() { \
479  /* IRQ epilogue code here.*/ \
480 }
481 
488 #define CH_CFG_IDLE_ENTER_HOOK() { \
489  /* Idle-enter code here.*/ \
490 }
491 
498 #define CH_CFG_IDLE_LEAVE_HOOK() { \
499  /* Idle-leave code here.*/ \
500 }
501 
506 #define CH_CFG_IDLE_LOOP_HOOK() { \
507  /* Idle loop code here.*/ \
508 }
509 
515 #define CH_CFG_SYSTEM_TICK_HOOK() { \
516  /* System tick event code here.*/ \
517 }
518 
525 #define CH_CFG_SYSTEM_HALT_HOOK(reason) do { \
526  extern int printf(const char *fmt, ...); \
527  printf(reason); \
528 } while(0)
529 
535 #define CH_CFG_TRACE_HOOK(tep) { \
536  /* Trace code here.*/ \
537 }
538 
541 /*===========================================================================*/
542 /* Port-specific settings (override port settings defaulted in chcore.h). */
543 /*===========================================================================*/
544 
545