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
8config BOARD
9	default "cy8cproto_062_4343w"
10
11if WIFI || BT
12
13# Select CYW43XXX part and module
14choice CYW43XXX_PART
15	default CYW4343W
16endchoice
17
18choice CYW4343W_MODULE
19	default CYW4343W_MURATA_1DX
20endchoice
21
22endif # WIFI || BT
23
24
25if BT
26
27# Select HCI components
28config UART
29	bool
30	default y
31
32config BT_UART
33	default y
34
35choice BT_HCI_BUS_TYPE
36	default BT_H4
37endchoice
38
39endif # BT
40
41endif   # BOARD_CY8CPROTO_062_4343W
42