aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-10-05 02:32:35 +0200
committerinmarket <andrewh@inmarket.com.au>2013-10-06 15:47:59 +1000
commitb3ee216bd2565e8ab9298f1f54b8e6df762b7d58 (patch)
treecea1f7bb188295522f3484559945fe2317ef74eb /include
parentd7d02395d0c1afe27bc39eeddc17899084c72de9 (diff)
downloaduGFX-b3ee216bd2565e8ab9298f1f54b8e6df762b7d58.tar.gz
uGFX-b3ee216bd2565e8ab9298f1f54b8e6df762b7d58.tar.bz2
uGFX-b3ee216bd2565e8ab9298f1f54b8e6df762b7d58.zip
Updates from main-line code
Diffstat (limited to 'include')
-rw-r--r--include/gtimer/options.h73
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 */
+/** @} */