mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-22 13:45:22 +00:00
Created MEC1501 deep and light sleep example for MCHP MEC1501. Modifications were made to SoC, board, timer, and hello world sample program. Power management split into SoC power implementing the interface and device power for device specific logic. Signed-off-by: Scott Worley <scott.worley@microchip.com>
15 lines
202 B
CMake
15 lines
202 B
CMake
#
|
|
# Copyright (c) 2019, Microchip Technology Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
zephyr_sources(
|
|
soc.c
|
|
)
|
|
|
|
zephyr_sources_ifdef(CONFIG_SYS_POWER_MANAGEMENT
|
|
device_power.c
|
|
power.c
|
|
)
|