You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
debug: cpu_load: Add NRF_ prefix to CPU load module
Zephyr is getting generic CPU load module and it is using
same Kconfig name. NCS CPU load module is Nordic specific
because it is using POWER SLEEPENTER,SLEEPEXIT events to track
idle state and CPU load. It is also not support on all targets
(nrf54h20, nRF54L Series).
Add note about added prefix to cpu_load Kconfig options in the
changelog.
Signed-off-by: Krzysztof Chruściński <[email protected]>
Copy file name to clipboardExpand all lines: applications/nrf_desktop/doc/cpu_meas.rst
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,8 +23,7 @@ Configuration
23
23
*************
24
24
25
25
To enable this module, use the :ref:`CONFIG_DESKTOP_CPU_MEAS_ENABLE <config_desktop_app_options>` Kconfig option.
26
-
This option selects the :kconfig:option:`CONFIG_CPU_LOAD` option.
27
-
The :kconfig:option:`CONFIG_CPU_LOAD` option enables the :ref:`cpu_load` library that is used to perform the measurements.
26
+
This option selects the :kconfig:option:`CONFIG_NRF_CPU_LOAD` option, which enables the :ref:`cpu_load` library that is used to perform the measurements.
28
27
29
28
Set the time between subsequent CPU load measurements, in milliseconds, using the :ref:`CONFIG_DESKTOP_CPU_MEAS_PERIOD <config_desktop_app_options>` option.
Copy file name to clipboardExpand all lines: doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -423,6 +423,10 @@ Debug libraries
423
423
* Added an experimental :ref:`Zephyr Core Dump <zephyr:coredump>` backend that writes a core dump to an internal flash or RRAM partition.
424
424
To enable this backend, set the :kconfig:option:`CONFIG_DEBUG_COREDUMP_BACKEND_OTHER` and :kconfig:option:`CONFIG_DEBUG_COREDUMP_BACKEND_NRF_FLASH_PARTITION` Kconfig options.
425
425
426
+
* :ref:`cpu_load` library:
427
+
428
+
* Added prefix ``NRF_`` to all Kconfig options (for example, :kconfig:option:`CONFIG_NRF_CPU_LOAD`) to avoid conflicts with Zephyr Kconfig options with the same names.
0 commit comments