1# ESP32 Ethernet driver configuration options
2
3# Copyright (c) 2022 Grant Ramsay <grant.ramsay@hotmail.com>
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig ETH_ESP32
7	bool "ESP32 Ethernet driver"
8	depends on SOC_ESP32
9	select MDIO
10	help
11	  Enable ESP32 Ethernet driver.
12
13if ETH_ESP32
14
15config ETH_ESP32_RX_THREAD_STACK_SIZE
16	int "ESP32 Ethernet receive thread stack size"
17	default 768
18
19config ETH_ESP32_RX_THREAD_PRIORITY
20	int "ESP32 Ethernet receive thread priority"
21	default 2
22
23endif # ETH_ESP32
24