Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
toki
configs
Commits
23be92a1
Commit
23be92a1
authored
Jun 10, 2020
by
Ulrich Huber
Committed by
Oliver Horst
Aug 31, 2020
Browse files
[fix] increase stack size for lwIP threads
[chg] deactivate all lwIP modules that may break startup
parent
aad26cae
Changes
2
Hide whitespace changes
Inline
Side-by-side
zcu102-zynqmp/freertos/baseline/master/lwip/include/lwip/lwipopts.h
View file @
23be92a1
...
...
@@ -289,6 +289,10 @@
---------- IP options ----------
--------------------------------
*/
#define LWIP_IPV4 1
#define LWIP_IPV6 0
/**
* IP_OPTIONS_ALLOWED: Defines the behavior for IP options.
* IP_OPTIONS_ALLOWED==0: All packets with IP options are dropped.
...
...
@@ -349,7 +353,7 @@
/**
* LWIP_DHCP==1: Enable DHCP module.
*/
#define LWIP_DHCP
1
#define LWIP_DHCP
0
/**
* DHCP_DOES_ARP_CHECK==1: Do an ARP check on the offered address.
...
...
@@ -485,7 +489,7 @@
* The stack size value itself is platform-dependent, but is passed to
* sys_thread_new() when the thread is created.
*/
#define TCPIP_THREAD_STACKSIZE
1024
#define TCPIP_THREAD_STACKSIZE
2048
/**
* TCPIP_THREAD_PRIO: The priority assigned to the main tcpip thread.
...
...
@@ -578,7 +582,7 @@
/**
* LWIP_SO_TIMESTAMPING==1: Enable timestamping feature
*/
#define LWIP_SO_TIMESTAMPING
1
#define LWIP_SO_TIMESTAMPING
0
/*
--------------------------------------
...
...
@@ -589,7 +593,7 @@
/**
* LWIP_CMSG_FRAMEWORK==1: Enable CMSG framework for delivering control messages
*/
#define LWIP_CMSG_FRAMEWORK
1
#define LWIP_CMSG_FRAMEWORK
0
/**
* Size of the buffer used to store control messages
...
...
@@ -636,4 +640,11 @@
*/
#define CHECKSUM_CHECK_TCP 0
/*
--------------------------------------
---------- Logging options -----------
--------------------------------------
*/
#define LWIP_DEBUG 0x80U
#endif
/* __LWIPOPTS_H_ */
zcu102-zynqmp/freertos/baseline/master/lwip/include/lwip/xlwipconfig.h
View file @
23be92a1
...
...
@@ -14,8 +14,8 @@
#define XLWIP_CONFIG_N_TX_COALESCE 1
#define XLWIP_CONFIG_N_RX_COALESCE 1
#define XLWIP_CONFIG_GEM_ENABLE_ERRQ
1
#define XLWIP_CONFIG_GEM_ENABLE_IEEE1588
1
#define XLWIP_CONFIG_GEM_ENABLE_ERRQ
0
#define XLWIP_CONFIG_GEM_ENABLE_IEEE1588
0
#define CONFIG_LINKSPEED_AUTODETECT 1
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment