-
Notifications
You must be signed in to change notification settings - Fork 1
/
Kconfig.w5100
37 lines (32 loc) · 1011 Bytes
/
Kconfig.w5100
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# W5100 Ethernet driver configuration options
# Copyright (c) 2020 Linumiz
# Author: Parthiban Nallathambi <[email protected]>
# SPDX-License-Identifier: Apache-2.0
menuconfig ETH_W5100
bool "W5100 Ethernet Controller"
depends on SPI
help
W5100 Stand-Alone Ethernet Controller
with SPI Interface
config ETH_W5100_RX_THREAD_STACK_SIZE
int "Stack size for internal incoming packet handler"
depends on ETH_W5100
default 800
help
Size of the stack used for internal thread which is ran for
incoming packet processing.
config ETH_W5100_RX_THREAD_PRIO
int "Priority for internal incoming packet handler"
depends on ETH_W5100
default 2
help
Priority level for internal thread which is ran for incoming
packet processing.
config ETH_W5100_TIMEOUT
int "IP buffer timeout"
depends on ETH_W5100
default 100
help
Given timeout in milliseconds. Maximum amount of time
that the driver will wait from the IP stack to get
a memory buffer before the Ethernet frame is dropped.