1# Raspberry Pi RP2040 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_SERIES
8	default "rp2040" if SOC_SERIES_RP2040
9
10config SOC_SERIES_RP2040
11	bool
12	select SOC_FAMILY_RPI_PICO
13
14config SOC_RP2040
15	bool
16	select SOC_SERIES_RP2040
17
18config SOC
19	default "rp2040" if SOC_RP2040
20