aboutsummaryrefslogtreecommitdiffstats
path: root/include/touchscreen.h
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-12-16 08:58:59 -0800
committerTectu <joel@unormal.org>2012-12-16 08:58:59 -0800
commit4743790cd40832205f701a280acd622cd003a9fd (patch)
tree088919aae5e2673621f6090dc79adac862c8c8a6 /include/touchscreen.h
parent09fc35864aa695cc46dcb95ed3951a365622b709 (diff)
parentf31a1f7f4aeb09bc09d49944daaf2f38fddd94e7 (diff)
downloaduGFX-4743790cd40832205f701a280acd622cd003a9fd.tar.gz
uGFX-4743790cd40832205f701a280acd622cd003a9fd.tar.bz2
uGFX-4743790cd40832205f701a280acd622cd003a9fd.zip
Merge pull request #26 from inmarket/master
Many tidyups and restructure.
Diffstat (limited to 'include/touchscreen.h')
-rw-r--r--include/touchscreen.h93
1 files changed, 0 insertions, 93 deletions
diff --git a/include/touchscreen.h b/include/touchscreen.h
deleted file mode 100644
index 5a84afdf..00000000
--- a/include/touchscreen.h
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- ChibiOS/GFX - Copyright (C) 2012
- 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/touchscreen.h
- * @brief TOUCHSCREEN Touchscreen driver subsystem header file.
- *
- * @addtogroup TOUCHSCREEN
- * @{
- */
-
-#ifndef TOUCHSCREEN_H
-#define TOUCHSCREEN_H
-
-#if GFX_USE_TOUCHSCREEN || defined(__DOXYGEN__)
-
-/*===========================================================================*/
-/* Driver constants. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Low Level Driver details and error checks. */
-/*===========================================================================*/
-
-/* Include the low level driver information */
-#include "lld/touchscreen/touchscreen_lld.h"
-
-/* For definitions of coord_t, we require gdisp.h */
-#include "gdisp.h"
-
-/*===========================================================================*/
-/* Type definitions */
-/*===========================================================================*/
-
-/**
- * @brief Struct used for calibration
- */
-typedef struct cal_t {
- float ax;
- float bx;
- float cx;
- float ay;
- float by;
- float cy;
-} cal_t;
-
-/*===========================================================================*/
-/* External declarations. */
-/*===========================================================================*/
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void tsInit(const TouchscreenDriver *ts);
-coord_t tsReadX(void);
-coord_t tsReadY(void);
-void tsCalibrate(void);
-
-#if TOUCHSCREEN_HAS_PRESSED
- bool_t tsPressed(void);
-#endif
-
-#if TOUCHSCREEN_HAS_PRESSURE
- uint16_t tsReadZ(void);
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* GFX_USE_TOUCHSCREEN */
-
-#endif /* TOUCHSCREEN_H */
-/** @} */
-