aboutsummaryrefslogtreecommitdiffstats
path: root/include/touchpad_lld.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2012-10-13 01:05:20 +0200
committerJoel Bodenmann <joel@unormal.org>2012-10-13 01:05:20 +0200
commit6546c032504e8c671eba9d447d09110b14c88d99 (patch)
tree4340bab2a97bfb49afdbd8405b7c652111e9d1ee /include/touchpad_lld.h
parent9174141aca356daaedadf23c098bca3e35cdbc58 (diff)
downloaduGFX-6546c032504e8c671eba9d447d09110b14c88d99.tar.gz
uGFX-6546c032504e8c671eba9d447d09110b14c88d99.tar.bz2
uGFX-6546c032504e8c671eba9d447d09110b14c88d99.zip
TOUCHPADDriver_t -> TOUCHPADDriver | GConsole_t -> GConsole
Diffstat (limited to 'include/touchpad_lld.h')
-rw-r--r--include/touchpad_lld.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/touchpad_lld.h b/include/touchpad_lld.h
index 77dd1578..d207eb6c 100644
--- a/include/touchpad_lld.h
+++ b/include/touchpad_lld.h
@@ -76,7 +76,7 @@
/**
* @brief Structure representing a Touchpad driver.
*/
-typedef struct _TOUCHPADDriver_t {
+typedef struct _TOUCHPADDriver {
/*
* @brief Pointer to SPI driver.
* @note SPI driver must be enabled in mcuconf.h and halconf.h
@@ -113,7 +113,7 @@ typedef struct _TOUCHPADDriver_t {
* bus with a fast flash memory chip.
*/
bool_t direct_init;
-} TOUCHPADDriver_t;
+} TOUCHPADDriver;
/*===========================================================================*/
@@ -126,7 +126,7 @@ extern "C" {
#endif
/* Core functions */
- void tp_lld_init(const TOUCHPADDriver_t *tp);
+ void tp_lld_init(const TOUCHPADDriver *tp);
uint16_t tp_lld_read_value(uint8_t cmd);
uint16_t tp_lld_read_x(void);