diff options
author | trsaunders <trsaunders@gmail.com> | 2012-06-19 20:05:01 +0100 |
---|---|---|
committer | trsaunders <trsaunders@gmail.com> | 2012-06-19 20:05:01 +0100 |
commit | 1f1f9ee38a6c2beb38285d550728d9661d0dc698 (patch) | |
tree | b1fd1683d81811e3a8ec2c52ba56913fb5dff0be /touchpad.h | |
parent | 6e76a59d10e6cd18c6de36c63c7ae967f94a35a0 (diff) | |
download | uGFX-1f1f9ee38a6c2beb38285d550728d9661d0dc698.tar.gz uGFX-1f1f9ee38a6c2beb38285d550728d9661d0dc698.tar.bz2 uGFX-1f1f9ee38a6c2beb38285d550728d9661d0dc698.zip |
c++ compatibility, FSMC driver for ssd1289
Diffstat (limited to 'touchpad.h')
-rw-r--r-- | touchpad.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -18,6 +18,11 @@ struct cal { float yn; }; +#ifdef __cplusplus +extern "C" { +#endif + + /* * Description: initializes touchpad (SPI) * @@ -74,5 +79,9 @@ uint16_t tpReadZ(void); */ void tpCalibrate(void); +#ifdef __cplusplus +} +#endif + #endif |