1# Raspberry Pi (RP) MCU line
2
3# Copyright (c) 2021 Nordic Semiconductor ASA
4# Copyright (c) 2021 Yonatan Schachter
5# SPDX-License-Identifier: Apache-2.0
6
7config SOC_FAMILY_RPI_PICO
8	bool
9
10if SOC_FAMILY_RPI_PICO
11
12config SOC_FAMILY
13	string
14	default "rpi_pico"
15
16source "soc/arm/rpi_pico/*/Kconfig.soc"
17
18endif # SOC_FAMILY_RPI_PICO
19