diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-12-02 16:10:46 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-12-02 16:10:46 +0100 |
commit | ff8f6e4409b976a726a9523951e5ed33d9de7d94 (patch) | |
tree | e59fe91a62710e9bd3f7a4f5c61ba0ecaff241bc /demos | |
parent | 537f76bedf88516542ee8eb64daef02694ab9f95 (diff) | |
download | uGFX-ff8f6e4409b976a726a9523951e5ed33d9de7d94.tar.gz uGFX-ff8f6e4409b976a726a9523951e5ed33d9de7d94.tar.bz2 uGFX-ff8f6e4409b976a726a9523951e5ed33d9de7d94.zip |
demo doc
Diffstat (limited to 'demos')
-rw-r--r-- | demos/modules/ginput_touch_driver_test/main.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/demos/modules/ginput_touch_driver_test/main.c b/demos/modules/ginput_touch_driver_test/main.c index dc8bb0f9..d586ee6f 100644 --- a/demos/modules/ginput_touch_driver_test/main.c +++ b/demos/modules/ginput_touch_driver_test/main.c @@ -18,6 +18,24 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+/*
+ * Make sure you have the following enabled in your halconf.h:
+ *
+ * #define GFX_USE_GDISP TRUE
+ * #define GFX_USE_GINPUT TRUE
+ * #define GFX_USE_GEVENT TRUE
+ * #define GFX_USE_GTIMER TRUE
+ * #define GFX_USE_GWIN TRUE
+ *
+ * #define GWIN_NEED_CONSOLE TRUE
+ * #define GWIN_NEED_BUTTON TRUE
+ *
+ * #define GINPUT_NEED_MOUSE TRUE
+ * #define GINPUT_NEED_TOUCH TRUE
+ *
+ * #define GDISP_NEED_CLIP TRUE
+ */
+
#include "ch.h"
#include "hal.h"
#include "chprintf.h"
|