1# ATMEL AT86RF23x/212x configuration options
2
3# Copyright (c) 2019 Gerson Fernando Budke
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig IEEE802154_RF2XX
7	bool "ATMEL RF2XX Driver support"
8	default y
9	depends on DT_HAS_ATMEL_RF2XX_ENABLED
10	select SPI
11	select GPIO
12
13if IEEE802154_RF2XX
14
15config IEEE802154_RF2XX_RX_STACK_SIZE
16	int "Driver's internal RX thread stack size"
17	default 800
18	help
19	  This option sets the driver's stack size for its internal RX thread.
20	  The default value should be sufficient, but in case it proves to be
21	  a too little one, this option makes it easy to play with the size.
22
23config IEEE802154_RF2XX_INIT_PRIO
24	int "RF2X initialization priority"
25	default 80
26	help
27	  Set the initialization priority number. Do not mess with it unless
28	  you know what you are doing. Beware rf2xx requires gpio and spi to
29	  be ready first (and sometime gpio should be the very first as spi
30	  might need it too). And of course it has to start before the net stack.
31
32endif
33