1# TI CC1352R LaunchXL board
2
3# Copyright (c) 2021 Florin Stancu
4# SPDX-License-Identifier: Apache-2.0
5
6config BOARD_CC1352_LP_SKY13317
7	bool "CC1352 LP common board antenna init"
8	default y if DT_HAS_SKYWORKS_SKY13317_ENABLED
9	help
10	  Some CC1352 boards have a SKY13317 component
11	  to select the antenna. This enables support
12	  for this component for the CC1352 boards using it.
13
14if BOARD_CC1352_LP_SKY13317
15
16config BOARD_ANTENNA_INIT_PRIO
17	int "Board antenna switch initialization priority"
18	default 70
19	help
20	  Set the priority for board init, must be greater than
21	  KERNEL_INIT_PRIORITY_DEVICE but smaller than
22	  IEEE802154_CC13XX_CC26XX_SUB_GHZ_INIT_PRIO.
23
24endif # BOARD_CC1352_LP_SKY13317
25