amiro-os / devices / DiWheelDrive / amiroosconf.h @ a47d64ad
History | View | Annotate | Download (422 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 | b3d6a364 | galberding | #define USER_THREAD_STACK_SIZE 2048 |
9 | 58fe0e0b | Thomas Schöpping | #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_ |