We disable power management by removing select HAS_PM. At this time these new SoC do not have any power management code. With HAS_PM selected the zephyr test runner will choose PM tests which fail to build. PM support will be enabled in the future once we decide which of the many Zephyr PM implementations we will support. Signed-off-by: Scott Worley <scott.worley@microchip.com>
21 lines
435 B
Text
21 lines
435 B
Text
# Microchip MEC175X MCU core series
|
|
|
|
# Copyright (c) 2024 Microchip Technology Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SOC_SERIES_MEC175X
|
|
select ARM
|
|
select CPU_CORTEX_M4
|
|
select CPU_CORTEX_M_HAS_DWT
|
|
select CPU_HAS_FPU
|
|
select CPU_HAS_ARM_MPU
|
|
select HAS_SWO
|
|
select HAS_MEC5_HAL
|
|
select SOC_PREP_HOOK
|
|
|
|
if SOC_SERIES_MEC175X
|
|
|
|
config RTOS_TIMER
|
|
bool "MEC175x RTOS Timer(32KHz) as kernel timer"
|
|
|
|
endif # SOC_SERIES_MEC175X
|