cpu_conf.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2017 Ken Rabold
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser General
5  * Public License v2.1. See the file LICENSE in the top level directory for more
6  * details.
7  */
8 
19 #ifndef CPU_CONF_H
20 #define CPU_CONF_H
21 
26 #ifndef THREAD_EXTRA_STACKSIZE_PRINTF
27 #define THREAD_EXTRA_STACKSIZE_PRINTF (256)
28 #endif
29 #ifndef THREAD_STACKSIZE_DEFAULT
30 #define THREAD_STACKSIZE_DEFAULT (1024)
31 #endif
32 #ifndef THREAD_STACKSIZE_IDLE
33 #define THREAD_STACKSIZE_IDLE (256)
34 #endif
35 
40 #define HAVE_HEAP_STATS
41 
45 #define IRQ_API_INLINED (1)
46 
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
50 
51 #ifdef __cplusplus
52 }
53 #endif
54 
55 #endif /* CPU_CONF_H */
56