1# ENC424J600 Ethernet driver configuration options 2 3# Copyright (c) 2019 PHYTEC Messtechnik GmbH 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig ETH_ENC424J600 7 bool "ENC424J600C Ethernet Controller" 8 depends on SPI 9 help 10 ENC424J600C Stand-Alone Ethernet Controller 11 with SPI Interface 12 13if ETH_ENC424J600 14 15config ETH_ENC424J600_RX_THREAD_STACK_SIZE 16 int "Stack size for internal incoming packet handler" 17 default 800 18 help 19 Size of the stack used for internal thread which is ran for 20 incoming packet processing. 21 22config ETH_ENC424J600_RX_THREAD_PRIO 23 int "Priority for internal incoming packet handler" 24 default 2 25 help 26 Priority level for internal thread which is ran for incoming 27 packet processing. 28 29config ETH_ENC424J600_TIMEOUT 30 int "IP buffer timeout" 31 default 100 32 help 33 Given timeout in milliseconds. Maximum amount of time 34 that the driver will wait from the IP stack to get 35 a memory buffer before the Ethernet frame is dropped. 36 37endif 38