diff options
author | Tectu <joel@unormal.org> | 2013-04-07 02:59:42 -0700 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2013-04-07 02:59:42 -0700 |
commit | 1d24b6977dd86d7fa68e5ddd451722430b371b78 (patch) | |
tree | 393c6669e4d683c84f53749e6ab189044d00f265 /include/ginput/lld/dial.h | |
parent | 05aebebb8bcaa6213076ebf5e191974bb5741d46 (diff) | |
parent | 5412fa559673f46cdec652068eaaddcbb6271779 (diff) | |
download | uGFX-1d24b6977dd86d7fa68e5ddd451722430b371b78.tar.gz uGFX-1d24b6977dd86d7fa68e5ddd451722430b371b78.tar.bz2 uGFX-1d24b6977dd86d7fa68e5ddd451722430b371b78.zip |
Merge pull request #63 from inmarket/master
GINPUT Dial. Simplify input -> GWIN widget assignment
Diffstat (limited to 'include/ginput/lld/dial.h')
-rw-r--r-- | include/ginput/lld/dial.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/include/ginput/lld/dial.h b/include/ginput/lld/dial.h new file mode 100644 index 00000000..3efae04f --- /dev/null +++ b/include/ginput/lld/dial.h @@ -0,0 +1,57 @@ +/* + ChibiOS/GFX - Copyright (C) 2012, 2013 + Joel Bodenmann aka Tectu <joel@unormal.org> + + This file is part of ChibiOS/GFX. + + ChibiOS/GFX is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + ChibiOS/GFX is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ +/** + * @file include/ginput/lld/dial.h + * @brief GINPUT header file for dial drivers. + * + * @defgroup Dial Dial + * @ingroup GINPUT + * @{ + */ + +#ifndef _LLD_GINPUT_DIAL_H +#define _LLD_GINPUT_DIAL_H + +#if GINPUT_NEED_DIAL || defined(__DOXYGEN__) + +#include "ginput_lld_dial_config.h" + +typedef void (*DialCallbackFn)(uint16_t instance, uint16_t rawvalue); + +/*===========================================================================*/ +/* External declarations. */ +/*===========================================================================*/ + +#ifdef __cplusplus +extern "C" { +#endif + + void ginput_lld_dial_init(void); + void ginput_lld_dial_poll(DialCallbackFn fn); + +#ifdef __cplusplus +} +#endif + +#endif /* GFX_USE_GINPUT && GINPUT_NEED_TOGGLE */ + +#endif /* _LLD_GINPUT_TOGGLE_H */ +/** @} */ + |