amiro-os / devices / LightRing / amiroosconf.h @ ba75ee1d
History | View | Annotate | Download (423 Bytes)
1 | 58fe0e0b | Thomas Schöpping | #ifndef AMIRO_AMIROOSCONF_H_
|
---|---|---|---|
2 | #define AMIRO_AMIROOSCONF_H_
|
||
3 | |||
4 | /**
|
||
5 | * @brief Stack size of the user thread object
|
||
6 | */
|
||
7 | #if !defined(USER_THREAD_STACK_SIZE) || defined(__DOXYGEN__)
|
||
8 | #define USER_THREAD_STACK_SIZE 1024 |
||
9 | #endif
|
||
10 | |||
11 | /**
|
||
12 | * @brief Flag to enable/disable als amiroDbgXXX macros
|
||
13 | */
|
||
14 | #if !defined(AMIRO_DBG) || defined(__DOXYGEN__)
|
||
15 | #define AMIRO_DBG TRUE
|
||
16 | #endif
|
||
17 | |||
18 | #endif // AMIRO_AMIROOSCONF_H_ |