c5003e0eb1
Add support for a "pm" shell command to trigger suspend/resume as well as runtime-get/put on devices. This is useful for testing during driver development. Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
11 lines
321 B
CMake
11 lines
321 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_PM)
|
|
zephyr_sources(pm.c policy.c state.c)
|
|
zephyr_sources_ifdef(CONFIG_PM_STATS pm_stats.c)
|
|
endif()
|
|
|
|
zephyr_sources_ifdef(CONFIG_PM_DEVICE device.c)
|
|
zephyr_sources_ifdef(CONFIG_PM_DEVICE_RUNTIME device_runtime.c)
|
|
zephyr_sources_ifdef(CONFIG_PM_DEVICE_SHELL pm_shell.c)
|