summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/ChangeLog.txt3
-rwxr-xr-xnuttx/ChangeLog6
2 files changed, 9 insertions, 0 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 1c2d5cd03..f2b2d5192 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -1232,3 +1232,6 @@
arch_tcuninitialize(). Instead the new OS interface boardctl() is
called to perform these test operations on the touchscreen driver
(2015-03-31).
+ * apps/examples/adc: Change apps/examples/adc to that is now calls
+ boardctl() instead of adc_devinit() in order to initalize the ADC
+ device(2015-03-31).
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 8e89f108f..7fb40b6fa 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -10076,3 +10076,9 @@
board_tsc_teardown(). These are not long called directly by
applications but only indirectly throught the crappy boardctl() OS
interface (2015-03-31).
+ * configs/Kconfig, boardctl.c, include/nuttx/board.h, include/sys/boardctl.h,
+ and several ADC files in configs/<board>/src/: Rename adc_devinit() to
+ board_adc_setup(). Add support to the boardctl() interface so that it
+ can call board_adc_setup() on behalf of an application. Make sure that
+ the proper features are enabled in the defconfig files that have
+ CONFIG_EXAMPLES_ADC=y (2015-03-31).