mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-31 07:28:37 -04:00
Update headers for the FreeRTOS V7.0.2 release.
This commit is contained in:
parent
6031a62f72
commit
cc61126025
902 changed files with 1795 additions and 2053 deletions
|
@ -96,8 +96,11 @@
|
|||
</tool>
|
||||
</toolChain>
|
||||
</folderInfo>
|
||||
<fileInfo id="xilinx.gnu.mb.exe.debug.2007678521.1631804544" name="xaxiemacif_fifo.c" rcbsApplicability="disable" resourcePath="lwIP/netif/xaxiemacif_fifo.c" toolsToInvoke="xilinx.gnu.mb.c.toolchain.compiler.debug.858164244.1486409758">
|
||||
<tool id="xilinx.gnu.mb.c.toolchain.compiler.debug.858164244.1486409758" name="MicroBlaze gcc compiler" superClass="xilinx.gnu.mb.c.toolchain.compiler.debug.858164244"/>
|
||||
</fileInfo>
|
||||
<sourceEntries>
|
||||
<entry excluding="lwIP/lwIP_Apps/apps/httpserver_raw/fsdata.c|main-blinky.c" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
|
||||
<entry excluding="lwIP/netif/xaxiemacif_fifo.c|lwIP/lwIP_Apps/apps/httpserver_raw/fsdata.c|main-blinky.c" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
|
||||
</sourceEntries>
|
||||
</configuration>
|
||||
</storageModule>
|
||||
|
|
|
@ -2092,7 +2092,6 @@ http_accept(void *arg, struct tcp_pcb *pcb, err_t err)
|
|||
|
||||
/* Tell TCP that this is the structure we wish to be passed for our
|
||||
callbacks. */
|
||||
tcp_nagle_disable(pcb);//_RB_
|
||||
tcp_arg(pcb, hs);
|
||||
|
||||
/* Set up the various callback functions */
|
||||
|
|
|
@ -117,7 +117,7 @@ static struct netif xNetIf;
|
|||
LWIP_PORT_INIT_IPADDR(&xIPAddr);
|
||||
LWIP_PORT_INIT_NETMASK(&xNetMask);
|
||||
|
||||
// netif_set_default( netif_add( &xNetIf, &xIPAddr, &xNetMask, &xGateway, NULL, ethernetif_init, tcpip_input ) );
|
||||
netif_set_default( netif_add( &xNetIf, &xIPAddr, &xNetMask, &xGateway, NULL, ethernetif_init, tcpip_input ) );
|
||||
netif_set_up( &xNetIf );
|
||||
|
||||
/* Initialise the raw http server. */
|
||||
|
|
|
@ -43,9 +43,6 @@
|
|||
#endif
|
||||
#endif /* BYTE_ORDER */
|
||||
|
||||
/* Using the Lite Ethernet IP. */
|
||||
#define XLWIP_CONFIG_INCLUDE_EMACLITE 1
|
||||
|
||||
/* SSI options. */
|
||||
#define TCPIP_THREAD_NAME "tcpip"
|
||||
#define LWIP_HTTPD_MAX_TAG_NAME_LEN 20
|
||||
|
@ -204,7 +201,7 @@ a lot of data that needs to be copied, this should be set high. */
|
|||
#define TCP_MSS 1460
|
||||
|
||||
/* TCP sender buffer space (bytes). */
|
||||
#define TCP_SND_BUF 2048
|
||||
#define TCP_SND_BUF ( TCP_MSS * 2 )
|
||||
|
||||
/* TCP sender buffer space (pbufs). This must be at least = 2 *
|
||||
TCP_SND_BUF/TCP_MSS for things to work. */
|
||||
|
@ -216,7 +213,7 @@ a lot of data that needs to be copied, this should be set high. */
|
|||
#define TCP_SNDLOWAT (TCP_SND_BUF/2)
|
||||
|
||||
/* TCP receive window. */
|
||||
#define TCP_WND 4048
|
||||
#define TCP_WND ( PBUF_POOL_SIZE * PBUF_POOL_BUFSIZE )
|
||||
|
||||
/* Maximum number of retransmissions of data segments. */
|
||||
#define TCP_MAXRTX 12
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue