ugfx/include/tdisp/options.h

79 lines
1.9 KiB
C
Raw Normal View History

2013-05-31 23:37:53 +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
* 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-01-11 12:25:38 +00:00
/**
* @file include/tdisp/options.h
* @brief TDISP sub-system options header file.
*
* @addtogroup TDISP
* @{
*/
#ifndef _TDISP_OPTIONS_H
#define _TDISP_OPTIONS_H
2013-01-13 10:07:43 +00:00
#if GFX_USE_TDISP
2013-01-11 12:25:38 +00:00
/**
* @name TDISP Functionality to be included
* @{
*/
2013-05-31 23:37:53 +00:00
/**
* @brief Set if the display need reading from the display
* @details Defaults to FALSE
* @details If TRUE, the read function of the display wil be implemented into the source.
* @note Most users do not need reading from the display.
*/
#ifndef TDISP_NEED_READ
#define TDISP_NEED_READ FALSE
#endif
/**
* @}
*
* @name TDISP Multi-Threading Options
2013-01-11 12:25:38 +00:00
* @{
*/
/**
* @brief Do the display functions need to be thread-safe.
* @details Defaults to FALSE
2013-01-11 12:25:38 +00:00
*/
#ifndef TDISP_NEED_MULTITHREAD
#define TDISP_NEED_MULTITHREAD FALSE
2013-01-11 12:25:38 +00:00
#endif
/**
* @}
*
* @name TDISP Optional Low Level Driver Defines
2013-01-11 12:25:38 +00:00
* @{
*/
/**
* @brief Use a custom board definition even if a board definition exists.
* @details Defaults to FALSE
* @details If TRUE, add tdisp_lld_board.h to your project directory and customise it.
* @note Not all TDISP low level drivers currently use board definition files.
2013-01-11 12:25:38 +00:00
*/
#ifndef TDISP_USE_CUSTOM_BOARD
#define TDISP_USE_CUSTOM_BOARD FALSE
2013-01-11 12:25:38 +00:00
#endif
/**
* @brief Set the screen height and width.
* @note Ignored by some low level GDISP drivers, optional for others.
* @note Where these values are allowed, a default is always provided by the low level driver.
2013-01-11 12:25:38 +00:00
*/
2013-05-31 23:37:53 +00:00
#ifndef TDISP_COLUMNS
#define TDISP_COLUMNS 16
#endif
#ifndef TDISP_ROWS
#define TDISP_ROWS 2
#endif
2013-01-11 12:25:38 +00:00
/** @} */
2013-01-13 10:07:43 +00:00
#endif /* GFX_USE_TDISP */
2013-01-11 12:25:38 +00:00
#endif /* _TDISP_OPTIONS_H */
/** @} */