From a922a268fd6fa224ce3c9199e30362203e409438 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Wed, 31 Oct 2012 01:14:11 +0100 Subject: doxygen for graph --- include/graph.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'include') diff --git a/include/graph.h b/include/graph.h index 9b4603bd..32995064 100644 --- a/include/graph.h +++ b/include/graph.h @@ -18,6 +18,13 @@ along with this program. If not, see . */ +/** + * @file graph.h + * @brief GRAPH module header file. + * + * @addtogroup GRAPH + * @{ + */ #ifndef GRAPH_H #define GRAPH_H @@ -27,6 +34,10 @@ #if GFX_USE_GRAPH +/*===========================================================================*/ +/* Type definitions */ +/*===========================================================================*/ + typedef struct _Graph { coord_t origin_x; coord_t origin_y; @@ -52,6 +63,10 @@ typedef struct _Graph { extern "C" { #endif +/*===========================================================================*/ +/* Type definitions */ +/*===========================================================================*/ + void graphDrawSystem(Graph *g); void graphDrawDot(Graph *g, coord_t x, coord_t y, uint16_t radius, color_t color); void graphDrawDots(Graph *g, int coord[][2], uint16_t entries, uint16_t radius, uint16_t color); @@ -64,4 +79,5 @@ void graphDrawNet(Graph *g, int coord[][2], uint16_t entries, uint16_t radius, u #endif /* GFX_USE_GRAPH */ #endif +/** @} */ -- cgit v1.2.3 From 1294824260eccfc79c449de103fbafd73d5670a3 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Fri, 2 Nov 2012 20:26:06 +0100 Subject: moar doxygen fixes --- include/gdisp_lld.h | 6 +++--- include/touchpad.h | 2 +- include/touchpad_lld.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/gdisp_lld.h b/include/gdisp_lld.h index 6dd826d9..966a8f54 100644 --- a/include/gdisp_lld.h +++ b/include/gdisp_lld.h @@ -146,7 +146,7 @@ /** * @brief Driver Control Constants - * @detail Unsupported control codes are ignored. + * @details Unsupported control codes are ignored. * @note The value parameter should always be typecast to (void *). * @note There are some predefined and some specific to the low level driver. * @note GDISP_CONTROL_POWER - Takes a gdisp_powermode_t @@ -166,7 +166,7 @@ /** * @brief Driver Query Constants - * @detail Unsupported query codes return (void *)-1. + * @details Unsupported query codes return (void *)-1. * @note There are some predefined and some specific to the low level driver. * @note The result should be typecast the required type. * @note GDISP_QUERY_WIDTH - Gets the width of the screen @@ -398,7 +398,7 @@ * GDISP_PIXELFORMAT_RGB666 * GDISP_PIXELFORMAT_CUSTOM * @note If you use GDISP_PIXELFORMAT_CUSTOM and packed bit fills - * you need to also define @P gdispPackPixels(buf,cx,x,y,c) + * you need to also define @p gdispPackPixels(buf,cx,x,y,c) * @note If you are using GDISP_HARDWARE_BITFILLS = FALSE then the pixel * format must not be a packed format as the software blit does * not support packed pixels diff --git a/include/touchpad.h b/include/touchpad.h index 1db5ac98..b6aa2589 100644 --- a/include/touchpad.h +++ b/include/touchpad.h @@ -22,7 +22,7 @@ * @file touchpad.h * @brief TOUCHPAD Touchpad Driver subsystem header file. * - * @addgroup TOUCHPAD + * @addtogroup TOUCHPAD * @{ */ #ifndef _TOUCHPAD_H diff --git a/include/touchpad_lld.h b/include/touchpad_lld.h index c73591c7..ab19cd97 100644 --- a/include/touchpad_lld.h +++ b/include/touchpad_lld.h @@ -22,7 +22,7 @@ * @file touchpad_lld.h * @brief TOUCHPAD Driver subsystem low level driver header. * - * @addgroup TOUCHPAD + * @addtogroup TOUCHPAD * @{ */ -- cgit v1.2.3 From 9ff7292013afbe578dea21c0106ae2bb5a4c8003 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sat, 3 Nov 2012 01:59:50 +0100 Subject: doxygen update --- include/graph.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'include') diff --git a/include/graph.h b/include/graph.h index 32995064..6d0849d8 100644 --- a/include/graph.h +++ b/include/graph.h @@ -17,7 +17,6 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ - /** * @file graph.h * @brief GRAPH module header file. @@ -32,7 +31,7 @@ #define GFX_USE_GRAPH FALSE #endif -#if GFX_USE_GRAPH +#if GFX_USE_GRAPH || defined(__DOXYGEN__) /*===========================================================================*/ /* Type definitions */ -- cgit v1.2.3 From db0c770ca0c7e04a86075c4dfc073eaf683ff5f7 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sat, 3 Nov 2012 02:56:59 +0100 Subject: even more doxygen... --- include/console.h | 9 +++++++++ include/gdisp.h | 5 ++++- include/gdisp_emulation.c | 1 + include/gdisp_fonts.h | 4 +++- include/gdisp_lld.h | 4 +++- include/gdisp_lld_msgs.h | 4 +++- include/graph.h | 4 +++- include/touchpad.h | 3 ++- include/touchpad_lld.h | 2 +- 9 files changed, 29 insertions(+), 7 deletions(-) (limited to 'include') diff --git a/include/console.h b/include/console.h index 9891ea56..224de096 100644 --- a/include/console.h +++ b/include/console.h @@ -18,6 +18,14 @@ along with this program. If not, see . */ +/** + * @file include/console.h + * @brief CONSOLE header file. + * + * @addtogroup CONSOLE + * @{ + */ + #ifndef CONSOLE_H #define CONSOLE_H @@ -81,4 +89,5 @@ msg_t gfxConsoleWrite(GConsole *console, const uint8_t *bp, size_t n); #endif /* GFX_USE_CONSOLE */ #endif /* CONSOLE_H */ +/** @} */ diff --git a/include/gdisp.h b/include/gdisp.h index 3964e9bd..9be97a12 100644 --- a/include/gdisp.h +++ b/include/gdisp.h @@ -17,13 +17,15 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ + /** - * @file gdisp.h + * @file include/gdisp.h * @brief GDISP Graphic Driver subsystem header file. * * @addtogroup GDISP * @{ */ + #ifndef _GDISP_H #define _GDISP_H @@ -317,3 +319,4 @@ void gdispDrawBox(coord_t x, coord_t y, coord_t cx, coord_t cy, color_t color); #endif /* _GDISP_H */ /** @} */ + diff --git a/include/gdisp_emulation.c b/include/gdisp_emulation.c index ec3e6a66..2c3f7caf 100644 --- a/include/gdisp_emulation.c +++ b/include/gdisp_emulation.c @@ -767,3 +767,4 @@ void *GDISP_LLD(query)(unsigned what) { #endif /* GFX_USE_GDISP */ #endif /* GDISP_EMULATION_C */ + diff --git a/include/gdisp_fonts.h b/include/gdisp_fonts.h index 4b9f2287..e3b07e86 100644 --- a/include/gdisp_fonts.h +++ b/include/gdisp_fonts.h @@ -17,8 +17,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ + /** - * @file gdisp_fonts.h + * @file include/gdisp_fonts.h * @brief GDISP internal font definitions. * @details This is not generally needed by an application. It is used * by the low level drivers that need to understand a font. @@ -88,3 +89,4 @@ struct font { #endif /* _GDISP_FONTS_H */ /** @} */ + diff --git a/include/gdisp_lld.h b/include/gdisp_lld.h index 966a8f54..8b7dd0e7 100644 --- a/include/gdisp_lld.h +++ b/include/gdisp_lld.h @@ -17,8 +17,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ + /** - * @file gdisp_lld.h + * @file include/gdisp_lld.h * @brief GDISP Graphic Driver subsystem low level driver header. * * @addtogroup GDISP @@ -648,3 +649,4 @@ extern "C" { #endif /* _GDISP_LLD_H */ /** @} */ + diff --git a/include/gdisp_lld_msgs.h b/include/gdisp_lld_msgs.h index a5cb885b..5885a70c 100644 --- a/include/gdisp_lld_msgs.h +++ b/include/gdisp_lld_msgs.h @@ -17,8 +17,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ + /** - * @file gdisp_lld_msgs.h + * @file include/gdisp_lld_msgs.h * @brief GDISP Graphic Driver subsystem low level driver message structures. * * @addtogroup GDISP @@ -191,3 +192,4 @@ typedef union gdisp_lld_msg { #endif /* GFX_USE_GDISP */ #endif /* _GDISP_LLD_MSGS_H */ /** @} */ + diff --git a/include/graph.h b/include/graph.h index 6d0849d8..bc0d3d15 100644 --- a/include/graph.h +++ b/include/graph.h @@ -17,13 +17,15 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ + /** - * @file graph.h + * @file include/graph.h * @brief GRAPH module header file. * * @addtogroup GRAPH * @{ */ + #ifndef GRAPH_H #define GRAPH_H diff --git a/include/touchpad.h b/include/touchpad.h index b6aa2589..63d6cbf7 100644 --- a/include/touchpad.h +++ b/include/touchpad.h @@ -19,12 +19,13 @@ */ /** - * @file touchpad.h + * @file include/touchpad.h * @brief TOUCHPAD Touchpad Driver subsystem header file. * * @addtogroup TOUCHPAD * @{ */ + #ifndef _TOUCHPAD_H #define _TOUCHPAD_H diff --git a/include/touchpad_lld.h b/include/touchpad_lld.h index ab19cd97..a5e28fdd 100644 --- a/include/touchpad_lld.h +++ b/include/touchpad_lld.h @@ -19,7 +19,7 @@ */ /** - * @file touchpad_lld.h + * @file include/touchpad_lld.h * @brief TOUCHPAD Driver subsystem low level driver header. * * @addtogroup TOUCHPAD -- cgit v1.2.3 From 9592a878267ff16aaf7f7439b1448aac05fde4c2 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Wed, 7 Nov 2012 13:45:00 +0100 Subject: small cosmetic fix --- include/touchpad_lld.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/touchpad_lld.h b/include/touchpad_lld.h index a5e28fdd..20fdbf7f 100644 --- a/include/touchpad_lld.h +++ b/include/touchpad_lld.h @@ -76,7 +76,7 @@ /** * @brief Structure representing a Touchpad driver. */ -typedef struct _TOUCHPADDriver { +typedef struct TOUCHPADDriver { /* * @brief Pointer to SPI driver. * @note SPI driver must be enabled in mcuconf.h and halconf.h -- cgit v1.2.3 From 6105b88f8947b61bc804ab608219444ac9c7f50f Mon Sep 17 00:00:00 2001 From: Kumar Abhishek Date: Fri, 9 Nov 2012 00:35:08 +0530 Subject: Touchpad API update to return coordinates as coord_t instead of uint16_t --- include/touchpad.h | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'include') diff --git a/include/touchpad.h b/include/touchpad.h index 63d6cbf7..ec0ef049 100644 --- a/include/touchpad.h +++ b/include/touchpad.h @@ -49,6 +49,9 @@ /* Include the low level driver information */ #include "touchpad_lld.h" +/* For definitions of coord_t, we require gdisp.h */ +#include "gdisp.h" + /*===========================================================================*/ /* Type definitions */ /*===========================================================================*/ @@ -57,10 +60,12 @@ * @brief Struct used for calibration */ typedef struct cal_t { - float xm; - float ym; - float xn; - float yn; + float ax; + float bx; + float cx; + float ay; + float by; + float cy; } cal_t; /*===========================================================================*/ @@ -72,12 +77,12 @@ extern "C" { #endif void tpInit(const TOUCHPADDriver *tp); -uint16_t tpReadX(void); -uint16_t tpReadY(void); +coord_t tpReadX(void); +coord_t tpReadY(void); void tpCalibrate(void); #if TOUCHPAD_HAS_IRQ - uint8_t tpIRQ(void); + bool_t tpIRQ(void); #endif #if TOUCHPAD_HAS_PRESSURE -- cgit v1.2.3 From 61d2238b259e140164a3d1f54d6144be24dcb08c Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Fri, 9 Nov 2012 01:04:27 +0100 Subject: small cleanup --- include/touchpad_lld.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include') diff --git a/include/touchpad_lld.h b/include/touchpad_lld.h index 20fdbf7f..20411198 100644 --- a/include/touchpad_lld.h +++ b/include/touchpad_lld.h @@ -53,6 +53,10 @@ #define TOUCHPAD_STORE_CALIBRATION FALSE #endif +#ifndef TOUCHPAD_VERIFY_CALIBRATION + #define TOUCHPAD_VERIFY_CALIBRATION FALSE +#endif + #ifndef TOUCHPAD_HAS_IRQ #define TOUCHPAD_HAS_IRQ FALSE #endif -- cgit v1.2.3 From 87b6d98055afff7c46bd6bdd7db7ba7c1d8e7a57 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sat, 10 Nov 2012 00:05:01 +0100 Subject: renamed touchpad into touchscreen --- include/touchpad.h | 100 ------------------------------- include/touchpad_lld.h | 155 ------------------------------------------------- 2 files changed, 255 deletions(-) delete mode 100644 include/touchpad.h delete mode 100644 include/touchpad_lld.h (limited to 'include') diff --git a/include/touchpad.h b/include/touchpad.h deleted file mode 100644 index ec0ef049..00000000 --- a/include/touchpad.h +++ /dev/null @@ -1,100 +0,0 @@ -/* - ChibiOS/GFX - Copyright (C) 2012 - Joel Bodenmann aka Tectu - - 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 . -*/ - -/** - * @file include/touchpad.h - * @brief TOUCHPAD Touchpad Driver subsystem header file. - * - * @addtogroup TOUCHPAD - * @{ - */ - -#ifndef _TOUCHPAD_H -#define _TOUCHPAD_H - -#if GFX_USE_TOUCHPAD || defined(__DOXYGEN__) - -/** - * @brief specifies how many conversions are made for a readout. - * - * @note higher is more accurate, but takes more time - */ -#define CONVERSIONS 3 - -/*===========================================================================*/ -/* Driver constants. */ -/*===========================================================================*/ - -/*===========================================================================*/ -/* Low Level Driver details and error checks. */ -/*===========================================================================*/ - -/* Include the low level driver information */ -#include "touchpad_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 tpInit(const TOUCHPADDriver *tp); -coord_t tpReadX(void); -coord_t tpReadY(void); -void tpCalibrate(void); - -#if TOUCHPAD_HAS_IRQ - bool_t tpIRQ(void); -#endif - -#if TOUCHPAD_HAS_PRESSURE - uint16_t tpReadZ(void); -#endif - -#ifdef __cplusplus -} -#endif - -#endif /* GFX_USE_TOUCHPAD */ - -#endif /* _TOUCHPAD_H */ -/** @} */ - diff --git a/include/touchpad_lld.h b/include/touchpad_lld.h deleted file mode 100644 index 20411198..00000000 --- a/include/touchpad_lld.h +++ /dev/null @@ -1,155 +0,0 @@ -/* - ChibiOS/GFX - Copyright (C) 2012 - Joel Bodenmann aka Tectu - - 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 . -*/ - -/** - * @file include/touchpad_lld.h - * @brief TOUCHPAD Driver subsystem low level driver header. - * - * @addtogroup TOUCHPAD - * @{ - */ - -#ifndef _TOUCHPAD_LLD_H -#define _TOUCHPAD_LLD_H - -#if GFX_USE_TOUCHPAD || defined(__DOXYGEN__) - -/*===========================================================================*/ -/* Include the low level driver configuration information */ -/*===========================================================================*/ - -#include "touchpad_lld_config.h" - -/*===========================================================================*/ -/* Error checks. */ -/*===========================================================================*/ - -#ifndef TOUCHPAD_NEED_MULTITHREAD - #define TOUCHPAD_NEED_MULTITHREAD FALSE -#endif - -#ifndef TOUCHPAD_XY_INVERTED - #define TOUCHPAD_XY_INVERTED FALSE -#endif - -#ifndef TOUCHPAD_STORE_CALIBRATION - #define TOUCHPAD_STORE_CALIBRATION FALSE -#endif - -#ifndef TOUCHPAD_VERIFY_CALIBRATION - #define TOUCHPAD_VERIFY_CALIBRATION FALSE -#endif - -#ifndef TOUCHPAD_HAS_IRQ - #define TOUCHPAD_HAS_IRQ FALSE -#endif - -#ifndef TOUCHPAD_HAS_PRESSURE - #define TOUCHPAD_HAS_PRESSURE FALSE -#endif - -#ifndef TOUCHPAD_SPI_PROLOGUE - #define TOUCHPAD_SPI_PROLOGUE() -#endif - -#ifndef TOUCHPAD_SPI_EPILOGUE - #define TOUCHPAD_SPI_EPILOGUE() -#endif - -/*===========================================================================*/ -/* Driver types. */ -/*===========================================================================*/ - -/** - * @brief Structure representing a Touchpad driver. - */ -typedef struct TOUCHPADDriver { - /* - * @brief Pointer to SPI driver. - * @note SPI driver must be enabled in mcuconf.h and halconf.h - */ - SPIDriver *spip; - - /* - * @brief Pointer to the SPI configuration structure. - * @note The lowest possible speed ~ 1-2MHz is to be used, otherwise - * will result in a lot of noise - */ - const SPIConfig *spicfg; - - /* - * @brief Touchscreen controller TPIRQ pin GPIO port - */ - ioportid_t tpIRQPort; - - /* - * @brief Touchscreen controller TPIRQ GPIO pin - * @note The interface is polled as of now, interrupt support is - * to be implemented in the future. - */ - ioportmask_t tpIRQPin; - - /* - * @brief Initialize the SPI with the configuration struct given or not - * If TRUE, spiStart is called by the init, otherwise not - * @note This is provided in such a case when SPI port is being shared - * across multiple peripherals, so not to disturb the SPI bus. - * You can use TOUCHPAD_SPI_PROLOGUE() and TOUCHPAD_SPI_EPILOGUE() - * macros to change the SPI configuration or speed before and - * after using the touchpad. An example case would be sharing the - * bus with a fast flash memory chip. - */ - bool_t direct_init; -} TOUCHPADDriver; - - -/*===========================================================================*/ -/* External declarations. */ -/*===========================================================================*/ - - -#ifdef __cplusplus -extern "C" { -#endif - - /* Core functions */ - void tp_lld_init(const TOUCHPADDriver *tp); - - uint16_t tp_lld_read_value(uint8_t cmd); - uint16_t tp_lld_read_x(void); - uint16_t tp_lld_read_y(void); - - #if TOUCHPAD_HAS_IRQ - uint8_t tp_lld_irq(void); - #endif - - #if TOUCHPAD_HAS_PRESSURE - uint16_t tp_lld_read_z(void); - #endif - -#ifdef __cplusplus -} -#endif - -#endif /* GFX_USE_TOUCHPAD */ - -#endif /* _TOUCHPAD_LLD_H */ -/** @} */ - -- cgit v1.2.3 From affd9792ff42fab8f376bd2c87a71b25fd52baf7 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sat, 10 Nov 2012 00:13:42 +0100 Subject: added touchscreen files --- include/touchscreen.h | 100 ++++++++++++++++++++++++++++++ include/touchscreen_lld.h | 155 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 255 insertions(+) create mode 100644 include/touchscreen.h create mode 100644 include/touchscreen_lld.h (limited to 'include') diff --git a/include/touchscreen.h b/include/touchscreen.h new file mode 100644 index 00000000..4d48e38d --- /dev/null +++ b/include/touchscreen.h @@ -0,0 +1,100 @@ +/* + ChibiOS/GFX - Copyright (C) 2012 + Joel Bodenmann aka Tectu + + 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 . +*/ + +/** + * @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__) + +/** + * @brief specifies how many conversions are made for a readout. + * + * @note higher is more accurate, but takes more time + */ +#define CONVERSIONS 3 + +/*===========================================================================*/ +/* Driver constants. */ +/*===========================================================================*/ + +/*===========================================================================*/ +/* Low Level Driver details and error checks. */ +/*===========================================================================*/ + +/* Include the low level driver information */ +#include "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_IRQ + bool_t tsIRQ(void); +#endif + +#if TOUCHSCREEN_HAS_PRESSURE + uint16_t tsReadZ(void); +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* GFX_USE_TOUCHSCREEN */ + +#endif /* TOUCHSCREEN_H */ +/** @} */ + diff --git a/include/touchscreen_lld.h b/include/touchscreen_lld.h new file mode 100644 index 00000000..53c66b53 --- /dev/null +++ b/include/touchscreen_lld.h @@ -0,0 +1,155 @@ +/* + ChibiOS/GFX - Copyright (C) 2012 + Joel Bodenmann aka Tectu + + 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 . +*/ + +/** + * @file include/touchscreen_lld.h + * @brief TOUCHSCREEN Driver subsystem low level driver header. + * + * @addtogroup TOUCHSCREEN + * @{ + */ + +#ifndef TOUCHSCREEN_LLD_H +#define TOUCHSCREEN_LLD_H + +#if GFX_USE_TOUCHSCREEN || defined(__DOXYGEN__) + +/*===========================================================================*/ +/* Include the low level driver configuration information */ +/*===========================================================================*/ + +#include "touchscreen_lld_config.h" + +/*===========================================================================*/ +/* Error checks. */ +/*===========================================================================*/ + +#ifndef TOUCHSCREEN_NEED_MULTITHREAD + #define TOUCHSCREEN_NEED_MULTITHREAD FALSE +#endif + +#ifndef TOUCHSCREEN_XY_INVERTED + #define TOUCHSCREEN_XY_INVERTED FALSE +#endif + +#ifndef TOUCHSCREEN_STORE_CALIBRATION + #define TOUCHSCREEN_STORE_CALIBRATION FALSE +#endif + +#ifndef TOUCHSCREEN_VERIFY_CALIBRATION + #define TOUCHSCREEN_VERIFY_CALIBRATION FALSE +#endif + +#ifndef TOUCHSCREEN_HAS_IRQ + #define TOUCHSCREEN_HAS_IRQ FALSE +#endif + +#ifndef TOUCHSCREEN_HAS_PRESSURE + #define TOUCHSCREEN_HAS_PRESSURE FALSE +#endif + +#ifndef TOUCHSCREEN_SPI_PROLOGUE + #define TOUCHSCREEN_SPI_PROLOGUE() +#endif + +#ifndef TOUCHSCREEN_SPI_EPILOGUE + #define TOUCHSCREEN_SPI_EPILOGUE() +#endif + +/*===========================================================================*/ +/* Driver types. */ +/*===========================================================================*/ + +/** + * @brief Structure representing a touchscreen driver. + */ +typedef struct TouchscreenDriver { + /* + * @brief Pointer to SPI driver. + * @note SPI driver must be enabled in mcuconf.h and halconf.h + */ + SPIDriver *spip; + + /* + * @brief Pointer to the SPI configuration structure. + * @note The lowest possible speed ~ 1-2MHz is to be used, otherwise + * will result in a lot of noise + */ + const SPIConfig *spicfg; + + /* + * @brief Touchscreen controller TPIRQ pin GPIO port + */ + ioportid_t tsIRQPort; + + /* + * @brief Touchscreen controller TPIRQ GPIO pin + * @note The interface is polled as of now, interrupt support is + * to be implemented in the future. + */ + ioportmask_t tsIRQPin; + + /* + * @brief Initialize the SPI with the configuration struct given or not + * If TRUE, spiStart is called by the init, otherwise not + * @note This is provided in such a case when SPI port is being shared + * across multiple peripherals, so not to disturb the SPI bus. + * You can use TOUCHSCREEN_SPI_PROLOGUE() and TOUCHSCREEN_SPI_EPILOGUE() + * macros to change the SPI configuration or speed before and + * after using the touchpad. An example case would be sharing the + * bus with a fast flash memory chip. + */ + bool_t direct_init; +} TouchscreenDriver; + + +/*===========================================================================*/ +/* External declarations. */ +/*===========================================================================*/ + + +#ifdef __cplusplus +extern "C" { +#endif + + /* Core functions */ + void ts_lld_init(const TouchscreenDriver *ts); + + uint16_t ts_lld_read_value(uint8_t cmd); + uint16_t ts_lld_read_x(void); + uint16_t ts_lld_read_y(void); + + #if TOUCHSCREEN_HAS_IRQ + uint8_t ts_lld_irq(void); + #endif + + #if TOUCHSCREEN_HAS_PRESSURE + uint16_t ts_lld_read_z(void); + #endif + +#ifdef __cplusplus +} +#endif + +#endif /* GFX_USE_TOUCHSCREEN */ + +#endif /* _TOUCHSCREEN_LLD_H */ +/** @} */ + -- cgit v1.2.3