ADS7843 cleanup

This commit is contained in:
Tectu 2012-08-16 12:55:18 +02:00
parent b402228265
commit 53000e3c19

View file

@ -19,7 +19,7 @@
*/ */
/** /**
* @file touchpadADS7843/touchpad_lld.c * @file touchpadXPT2046/touchpad_lld.c
* @brief Touchpad Driver subsystem low level driver source. * @brief Touchpad Driver subsystem low level driver source.
* *
* @addtogroup TOUCHPAD * @addtogroup TOUCHPAD
@ -133,7 +133,6 @@ static void tp_lld_filter(void) {
} }
} }
} }
} }
/** /**
@ -232,6 +231,18 @@ uint16_t tp_lld_read_y(void) {
} }
#endif #endif
#if TOUCHPAD_HAS_PRESSURE || defined(__DOXYGEN__)
/*
* @brief Reads out the Z direction / pressure.
*
* @notapi
*/
uint16_t tp_lld_read_z(void) {
/* ToDo */
return 42;
}
#endif
#endif /* HAL_USE_TOUCHPAD */ #endif /* HAL_USE_TOUCHPAD */
/** @} */ /** @} */