summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-05-08 22:10:29 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-05-08 22:10:29 +0000
commit7b079e35322d82db1185b0f753960c981b71302a (patch)
tree16b4ca73d161b169be423dfe7089798041f3338f /apps
parente6ee961e0185ae2378339a42277039e212d44417 (diff)
The STMPE11/touchscreen is now fully functional on the STM3240G-EVAL
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4715 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/touchscreen/tc_main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/examples/touchscreen/tc_main.c b/apps/examples/touchscreen/tc_main.c
index 6db6af992a..162025c790 100644
--- a/apps/examples/touchscreen/tc_main.c
+++ b/apps/examples/touchscreen/tc_main.c
@@ -122,7 +122,7 @@ int MAIN_NAME(int argc, char *argv[])
* external to this test.
*/
- message(MAIN_STRING "Initializing external touschscreen device\n");
+ message(MAIN_STRING "Initializing external touchscreen device\n");
ret = arch_tcinitialize(CONFIG_EXAMPLES_TOUCHSCREEN_MINOR);
if (ret != OK)
{
@@ -133,6 +133,7 @@ int MAIN_NAME(int argc, char *argv[])
/* Open the touchscreen device for reading */
+ message(MAIN_STRING "Opening %s\n", CONFIG_EXAMPLES_TOUCHSCREEN_DEVPATH);
fd = open(CONFIG_EXAMPLES_TOUCHSCREEN_DEVPATH, O_RDONLY);
if (fd < 0)
{
@@ -162,6 +163,7 @@ int MAIN_NAME(int argc, char *argv[])
/* Read one sample */
+ ivdbg("Reading...\n");
nbytes = read(fd, &sample, sizeof(struct touch_sample_s));
ivdbg("Bytes read: %d\n", nbytes);