diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-10-05 02:32:35 +0200 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-10-06 15:47:59 +1000 |
commit | b3ee216bd2565e8ab9298f1f54b8e6df762b7d58 (patch) | |
tree | cea1f7bb188295522f3484559945fe2317ef74eb /include/gtimer | |
parent | d7d02395d0c1afe27bc39eeddc17899084c72de9 (diff) | |
download | uGFX-b3ee216bd2565e8ab9298f1f54b8e6df762b7d58.tar.gz uGFX-b3ee216bd2565e8ab9298f1f54b8e6df762b7d58.tar.bz2 uGFX-b3ee216bd2565e8ab9298f1f54b8e6df762b7d58.zip |
Updates from main-line code
Diffstat (limited to 'include/gtimer')
-rw-r--r-- | include/gtimer/options.h | 73 |
1 files changed, 40 insertions, 33 deletions
diff --git a/include/gtimer/options.h b/include/gtimer/options.h index 958f89e4..17358abe 100644 --- a/include/gtimer/options.h +++ b/include/gtimer/options.h @@ -4,36 +4,43 @@ * * http://ugfx.org/license.html */ -
-/**
- * @file include/gtimer/options.h
- * @brief GTIMER sub-system options header file.
- *
- * @addtogroup GTIMER
- * @{
- */
-
-#ifndef _GTIMER_OPTIONS_H
-#define _GTIMER_OPTIONS_H
-
-/**
- * @name GTIMER Functionality to be included
- * @{
- */
-/**
- * @}
- *
- * @name GTIMER Optional Sizing Parameters
- * @{
- */
- /**
- * @brief Defines the size of the timer threads work area (stack+structures).
- * @details Defaults to 512 bytes
- */
- #ifndef GTIMER_THREAD_WORKAREA_SIZE
- #define GTIMER_THREAD_WORKAREA_SIZE 512
- #endif
-/** @} */
-
-#endif /* _GTIMER_OPTIONS_H */
-/** @} */
+ +/** + * @file include/gtimer/options.h + * @brief GTIMER sub-system options header file. + * + * @addtogroup GTIMER + * @{ + */ + +#ifndef _GTIMER_OPTIONS_H +#define _GTIMER_OPTIONS_H + +/** + * @name GTIMER Functionality to be included + * @{ + */ +/** + * @} + * + * @name GTIMER Optional Sizing Parameters + * @{ + */ + /** + * @brief Defines the GTIMER thread priority + * @details Defaults to HIGH_PRIORITY + */ + #ifndef GTIMER_THREAD_PRIORITY + #define GTIMER_THREAD_PRIORITY HIGH_PRIORITY + #endif + /** + * @brief Defines the size of the timer threads work area (stack+structures). + * @details Defaults to 512 bytes + */ + #ifndef GTIMER_THREAD_WORKAREA_SIZE + #define GTIMER_THREAD_WORKAREA_SIZE 512 + #endif +/** @} */ + +#endif /* _GTIMER_OPTIONS_H */ +/** @} */ |