ugfx/include/gtimer/options.h

40 lines
818 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:
*
* http://chibios-gfx.com/license.html
*/
2013-02-11 08:25:45 +00:00
/**
* @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 */
/** @} */