diff options
author | Tectu <joel@unormal.org> | 2012-08-09 12:54:22 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-08-09 12:54:22 +0200 |
commit | c5e9fa504f425f0fa11054bee85b2dd50a75b48c (patch) | |
tree | da56f09ac1023755054e1f953ce47e8b21ec3760 /halext/include | |
parent | aae3722857ce4e11f2843c5c58655d48a243a48a (diff) | |
download | uGFX-c5e9fa504f425f0fa11054bee85b2dd50a75b48c.tar.gz uGFX-c5e9fa504f425f0fa11054bee85b2dd50a75b48c.tar.bz2 uGFX-c5e9fa504f425f0fa11054bee85b2dd50a75b48c.zip |
added SPI config struct to TOUCHPADDriver
Diffstat (limited to 'halext/include')
-rw-r--r-- | halext/include/touchpad_lld.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/halext/include/touchpad_lld.h b/halext/include/touchpad_lld.h index c0339e05..45a561d3 100644 --- a/halext/include/touchpad_lld.h +++ b/halext/include/touchpad_lld.h @@ -61,9 +61,13 @@ typedef struct TOUCHPADDriver TOUCHPADDriver; struct TOUCHPADDriver { /* * @brief Pointer to SPI driver. - * @note SPI driver must be enabled in mcu- and halconf.h */ SPIDriver *spid; + + /* + * @brief SPI configuration. + */ + SPIConfig *spicfg; }; /*===========================================================================*/ |