diff --git a/ChangeLog.txt b/ChangeLog.txt index 840c0640b..03b416001 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -168,3 +168,5 @@ exactly sure how to do that. * libnxwidgets/Makefile and NxWidgets/nxwm/Makefile: Need updates for consistency with recent changes to NuttX build system (>= 6.22) +* Kconfig: Add option to turn on the memory monitor feature of the + NxWidgets/NxWM unit tests. diff --git a/Kconfig b/Kconfig index 1d7852507..6befd1ace 100644 --- a/Kconfig +++ b/Kconfig @@ -3,7 +3,7 @@ # see misc/tools/kconfig-language.txt. # -menuconfig NXWIDGETS +config NXWIDGETS bool "Enable NxWidgets" default n depends on NX && HAVE_CXX @@ -201,9 +201,16 @@ config NXWIDGETS_CURSORCONTROL_SIZE of cursor controls that can between entered by NX polling cycles without losing data. Default: 4 +config NXWIDGET_MEMMONITOR + bool "Memory Usage Monitor" + default n + ---help--- + Enable memory usage monitor instrumentation. This feature is only + used by the NxWidget/NxWM unit tests. + endif -menuconfig NXWM +config NXWM bool "Enable NxWM" default n depends on NXWIDGETS && NX_MULTIUSER