1# Copyright 2024 Rahul Arasikere <arasikere.rahul@gmail.com> 2# SPDX-License-Identifier: Apache-2.0 3 4if BOARD_ARDUINO_PORTENTA_H7 5 6if NETWORKING 7 8config REGULATOR 9 default y 10 11config NET_L2_ETHERNET 12 default y 13 14endif # NETWORKING 15 16if BOARD_ARDUINO_PORTENTA_H7_STM32H747XX_M7 17 18source "boards/common/usb/Kconfig.cdc_acm_serial.defconfig" 19 20endif # BOARD_ARDUINO_PORTENTA_H7_STM32H747XX_M7 21 22endif # BOARD_ARDUINO_PORTENTA_H7 23 24if BT 25 26choice AIROC_PART 27 default CYW4343W 28endchoice 29 30choice CYW4343W_MODULE 31 default CYW4343W_MURATA_1DX 32endchoice 33 34endif # BT 35