some more touchpad stuff

ugfx_release_2.6
Tectu 2012-08-09 00:43:52 +02:00
parent 82dbef4c8d
commit 308184ead1
3 changed files with 12 additions and 8 deletions

View File

@ -50,7 +50,7 @@
/*===========================================================================*/ /*===========================================================================*/
#if !defined(__DOXYGEN__) #if !defined(__DOXYGEN__)
TOUCHPADDriver TOUCHPAD; TOUCHPADDriver Touchpad;
#endif #endif
/*===========================================================================*/ /*===========================================================================*/
@ -72,12 +72,15 @@
/* ---- Required Routines ---- */ /* ---- Required Routines ---- */
/** /**
* @brief Low level GDISP driver initialization. * @brief Low level Touchpad driver initialization.
* *
* @notapi * @notapi
*/ */
void touchpad_lld_init(void) { void tp_lld_init(TOUCHPADDriver *tp) {
/* Initialise the TOUCHPAD structure */ /* Initialise the TOUCHPAD structure */
/* ToDo */
(void)tp;
} }
/** /**
@ -85,7 +88,7 @@ void touchpad_lld_init(void) {
* *
* @notapi * @notapi
*/ */
uint16_t touchpad_lld_read_x(void) { uint16_t tp_lld_read_x(void) {
/* ToDo */ /* ToDo */
return 0; return 0;
} }
@ -95,7 +98,7 @@ uint16_t touchpad_lld_read_x(void) {
* *
* @notapi * @notapi
*/ */
uint16_t touchpad_lld_read_y(void) { uint16_t tp_lld_read_y(void) {
/* ToDo */ /* ToDo */
return 0; return 0;
} }
@ -107,7 +110,7 @@ uint16_t touchpad_lld_read_y(void) {
* *
* @notapi * @notapi
*/ */
uint16_t toucpad_lld_read_y(void) { uint16_t tp_lld_read_y(void) {
/* ToDo */ /* ToDo */
return 0; return 0;
} }

View File

@ -35,7 +35,7 @@
/* Driver hardware support. */ /* Driver hardware support. */
/*===========================================================================*/ /*===========================================================================*/
#define TOUCHPAD_PRESSURE_DIRECTION TRUE #define TOUCHPAD_PRESSURE TRUE
#endif /* HAL_USE_TOUCHPAD */ #endif /* HAL_USE_TOUCHPAD */

View File

@ -3,7 +3,8 @@
HALSRC += $(LCDLIB)/halext/src/gdisp.c \ HALSRC += $(LCDLIB)/halext/src/gdisp.c \
$(LCDLIB)/halext/src/gdisp_fonts.c \ $(LCDLIB)/halext/src/gdisp_fonts.c \
$(LCDLIB)/halext/src/gdisp_emulation.c $(LCDLIB)/halext/src/gdisp_emulation.c \
$(LCDLIB)/halext/src/touchpad.c
# Required include directories # Required include directories
HALINC += $(LCDLIB)/halext/include HALINC += $(LCDLIB)/halext/include