1# CY8CPROTO-062-4343W PSOC™ 6 Wi-Fi BT Prototyping Kit configuration
2
3# Copyright (c) 2021 Cypress Semiconductor Corporation.
4# SPDX-License-Identifier: Apache-2.0
5
6if BOARD_CY8CPROTO_062_4343W
7
8if WIFI || BT
9
10# Select AIROC part and module
11choice AIROC_PART
12	default CYW4343W
13endchoice
14
15choice CYW4343W_MODULE
16	default CYW4343W_MURATA_1DX
17endchoice
18
19endif # WIFI || BT
20
21if WIFI
22
23config WIFI_AIROC
24	default y
25
26# Enable L2 Ethernet
27config NET_L2_ETHERNET
28	default y
29
30endif # WIFI
31
32if BT
33
34# Select HCI components
35config UART
36	bool
37	default y
38
39endif # BT
40
41# Heap Pool Size
42config HEAP_MEM_POOL_ADD_SIZE_BOARD
43	int
44	default 15000 if WIFI
45	default 4096
46
47endif   # BOARD_CY8CPROTO_062_4343W
48