ugfx/src/gtimer/gtimer_options.h

47 lines
979 B
C
Raw Normal View History

2013-05-03 14:36:17 +00:00
/*
2013-06-15 11:37:22 +00:00
* This file is subject to the terms of the GFX License. If a copy of
2013-05-03 14:36:17 +00:00
* the license was not distributed with this file, you can obtain one at:
*
2013-07-21 20:20:37 +00:00
* http://ugfx.org/license.html
2013-05-03 14:36:17 +00:00
*/
2013-10-05 00:32:35 +00:00
/**
* @file src/gtimer/gtimer_options.h
2013-10-05 00:32:35 +00:00
* @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 gThreadpriorityHigh
2013-10-05 00:32:35 +00:00
*/
#ifndef GTIMER_THREAD_PRIORITY
#define GTIMER_THREAD_PRIORITY gThreadpriorityHigh
2013-10-05 00:32:35 +00:00
#endif
/**
* @brief Defines the size of the timer threads work area (stack+structures).
2013-12-21 22:57:44 +00:00
* @details Defaults to 2048 bytes
2013-10-05 00:32:35 +00:00
*/
#ifndef GTIMER_THREAD_WORKAREA_SIZE
#define GTIMER_THREAD_WORKAREA_SIZE 2048
2013-10-05 00:32:35 +00:00
#endif
/** @} */
#endif /* _GTIMER_OPTIONS_H */
/** @} */