summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-03-31 13:26:33 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-03-31 13:26:33 -0600
commit49a7570f92a3ae31838f2eea2fa71354361f2881 (patch)
treef53ff19d62b6962993391114e0238678443474ef
parent0d085198e9bafae34dcb77d1e75305785f1e5d08 (diff)
downloadpx4-nuttx-49a7570f92a3ae31838f2eea2fa71354361f2881.tar.gz
px4-nuttx-49a7570f92a3ae31838f2eea2fa71354361f2881.tar.bz2
px4-nuttx-49a7570f92a3ae31838f2eea2fa71354361f2881.zip
Update ChangeLogs
-rw-r--r--apps/ChangeLog.txt4
-rwxr-xr-xnuttx/ChangeLog7
2 files changed, 11 insertions, 0 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 84c3bb327..1c2d5cd03 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -1228,3 +1228,7 @@
instead of board_app_initaliaze(). Remove support for
CONFIG_NSH_ARCHMAC. It is not used and there are better ways to do
that operation (2015-03-31).
+ * apps/examples/touchscreen: No longer calls arch_tcinitialize() or
+ arch_tcuninitialize(). Instead the new OS interface boardctl() is
+ called to perform these test operations on the touchscreen driver
+ (2015-03-31).
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index ce177d40e..8e89f108f 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -10069,3 +10069,10 @@
CONFIG_LIB_BOARDCTL=y appears wherever CONFIG_NSH_ARCHINIT=y appears.
Remove support for CONFIG_NSH_ARCHMAC. It is not used and there are
better ways to do that operation (2015-03-31).
+ * configs/Kconfig, boardctl.c, all touchscreen driver setup functions,
+ include/board.h, include/sys/boardctl.h, and
+ include/nuttx/input/touchscreen.h: arch_tcinitialize() and
+ arch_tcunitinitialize() renamed to board_tsc_setup() and
+ board_tsc_teardown(). These are not long called directly by
+ applications but only indirectly throught the crappy boardctl() OS
+ interface (2015-03-31).