1# Copyright (c) 2025 Silicon Laboratories Inc. 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_SERIES_EFR32BG29 || SOC_SERIES_EFR32MG29 5 6config NUM_IRQS 7 # must be >= the highest interrupt number used 8 default 70 9 10config PM 11 default n 12 select UART_INTERRUPT_DRIVEN if SERIAL_SUPPORT_INTERRUPT 13 14choice PM_POLICY 15 default PM_POLICY_DEFAULT 16 depends on PM 17endchoice 18 19endif 20