aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-05-11 00:05:25 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-05-11 00:05:25 +0000
commite72205be3c00581cc6fe2428b4daff38bd7c9a07 (patch)
tree0c718467856492451acfb8af51db3d59abad08fb /apps
parent23897082d9d007335eda86b7d9af5a43b1b99f67 (diff)
downloadpx4-firmware-e72205be3c00581cc6fe2428b4daff38bd7c9a07.tar.gz
px4-firmware-e72205be3c00581cc6fe2428b4daff38bd7c9a07.tar.bz2
px4-firmware-e72205be3c00581cc6fe2428b4daff38bd7c9a07.zip
NxWM: Finishes touchscreen implementation; NuttX: Standardize touchscreen initialization interfaces for all boards
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4721 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'apps')
-rwxr-xr-xapps/ChangeLog.txt2
-rw-r--r--apps/examples/touchscreen/tc.h24
2 files changed, 2 insertions, 24 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 9dcb3ad1f..9934e1fe4 100755
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -226,3 +226,5 @@
basis in the ChangeLog)
* apps/examples/watchdog: Add a watchdog timer example.
* apps/examples/tiff: Fix wrong path used for temporary file.
+ * apps/examples/touchscreen: Standardize the board-specific, touchscreen
+ initialization interfaces.
diff --git a/apps/examples/touchscreen/tc.h b/apps/examples/touchscreen/tc.h
index 173ed491f..f3e6ea634 100644
--- a/apps/examples/touchscreen/tc.h
+++ b/apps/examples/touchscreen/tc.h
@@ -110,28 +110,4 @@
* Public Function Prototypes
****************************************************************************/
-/****************************************************************************
- * Name: arch_tcinitialize()
- *
- * Description:
- * Perform architecuture-specific initialization of the touchscreen
- * hardware. This interface must be provided by all configurations
- * using apps/examples/touchscreen
- *
- ****************************************************************************/
-
-int arch_tcinitialize(int minor);
-
-/****************************************************************************
- * Name: arch_tcuninitialize()
- *
- * Description:
- * Perform architecuture-specific un-initialization of the touchscreen
- * hardware. This interface must be provided by all configurations
- * using apps/examples/touchscreen
- *
- ****************************************************************************/
-
-void arch_tcuninitialize(void);
-
#endif /* __APPS_EXAMPLES_TOUCHSCREEN_TC_H */