µGFX  2.9
version 2.9
gtimer_options.h
Go to the documentation of this file.
1 /*
2  * This file is subject to the terms of the GFX License. If a copy of
3  * the license was not distributed with this file, you can obtain one at:
4  *
5  * http://ugfx.io/license.html
6  */
7 
8 /**
9  * @file src/gtimer/gtimer_options.h
10  * @brief GTIMER sub-system options header file.
11  *
12  * @addtogroup GTIMER
13  * @{
14  */
15 
16 #ifndef _GTIMER_OPTIONS_H
17 #define _GTIMER_OPTIONS_H
18 
19 /**
20  * @name GTIMER Functionality to be included
21  * @{
22  */
23 /**
24  * @}
25  *
26  * @name GTIMER Optional Sizing Parameters
27  * @{
28  */
29  /**
30  * @brief Defines the GTIMER thread priority
31  * @details Defaults to gThreadpriorityHigh
32  */
33  #ifndef GTIMER_THREAD_PRIORITY
34  #define GTIMER_THREAD_PRIORITY gThreadpriorityHigh
35  #endif
36  /**
37  * @brief Defines the size of the timer threads work area (stack+structures).
38  * @details Defaults to 2048 bytes
39  */
40  #ifndef GTIMER_THREAD_WORKAREA_SIZE
41  #define GTIMER_THREAD_WORKAREA_SIZE 2048
42  #endif
43 /** @} */
44 
45 #endif /* _GTIMER_OPTIONS_H */
46 /** @} */