Skip to content

Commit

Permalink
Merge pull request #29 from weston-embedded/release/v3.06.01
Browse files Browse the repository at this point in the history
Release/v3.06.01
  • Loading branch information
wes-jmagasrevy authored May 21, 2021
2 parents b4c7dce + 40b41ef commit 4828512
Show file tree
Hide file tree
Showing 226 changed files with 1,318 additions and 531 deletions.
4 changes: 2 additions & 2 deletions BSP/Template/bsp_net_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* TEMPLATE
*
* Filename : bsp_net_eth.c
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions BSP/Template/bsp_net_eth.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* TEMPLATE
*
* Filename : bsp_net_eth.h
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions BSP/Template/bsp_net_wifi.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* TEMPLATE
*
* Filename : bsp_net_wifi.c
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions BSP/Template/bsp_net_wifi.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* TEMPLATE
*
* Filename : bsp_net_wifi.h
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Cfg/Template/net_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* TEMPLATE-EXAMPLE
*
* Filename : net_cfg.c
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
27 changes: 25 additions & 2 deletions Cfg/Template/net_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* TEMPLATE
*
* Filename : net_cfg.h
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down Expand Up @@ -514,6 +514,29 @@ extern const NET_TASK_CFG NetTmrTaskCfg;
/* to never time out. Note that it's possible to change at runtime any timeout values using Socket option API. */
/* #define NET_TCP_DFLT_TIMEOUT_CONN_RX_Q_MS 1000u */
/* #define NET_TCP_DFLT_TIMEOUT_CONN_TX_Q_MS 1000u */
/* */
/* */
/* When a new TCP connection is established, RFC #6528 recommends the sequence number to be randomized w/ the following */
/* method: */
/* ISN = M + F(localip, localport, remoteip, remoteport, secretkey) */
/* */
/* Where: */
/* M = The value of a counter (NetTCP_TxSeqNbrCtr) maintained by the developer */
/* at the BSP level. The counter must be incremented by '1' every 4 uS. */
/* */
/* F = A mixing function (chosen to be MD5) that takes as input the five-tuple: */
/* (localip, localport, remoteip, remoteport, secretkey); of which the first */
/* four coordinates are known but 'secretkey' must be chosen preferably at */
/* boot time (See NetTCP_Init()). */
/* */
/* */
/* When the NET_TCP_CFG_RANDOM_ISN_GEN define is uncommented, the user must define a BSP-level function with signature */
/* CPU_INT32U NetBSP_GetEntropyVal(void) that returns a 32 bit random value generated by a hardware random number */
/* generator or from another entropy source (such as an ADC). This value will be used to seed the initial sequence nbr. */
/* In addition, the user should maintain a 32-bit counter incremented every 4 microseconds as described above. */
/* */
/* #define NET_TCP_CFG_RANDOM_ISN_GEN */
/* */
/* ==================================================================================================================== */


Expand Down
4 changes: 2 additions & 2 deletions Cfg/Template/net_dev_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* TEMPLATE
*
* Filename : net_dev_cfg.c
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Cfg/Template/net_dev_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* TEMPLATE
*
* Filename : net_dev_cfg.h
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Cmd/net_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* NETWORK SHELL COMMAND
*
* Filename : net_cmd.c
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
* Note(s) : (1) Assumes the following versions (or more recent) of software modules are included in
* the project build :
Expand Down
4 changes: 2 additions & 2 deletions Cmd/net_cmd.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* NETWORK SHELL COMMAND
*
* Filename : net_cmd.h
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
* Note(s) : (1) Assumes the following versions (or more recent) of software modules are included in
* the project build :
Expand Down
4 changes: 2 additions & 2 deletions Cmd/net_cmd_args_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* NETWORK COMMAND ARGUMENT PARSING UTILITIES
*
* Filename : net_cmd_args_parser.c
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
* Note(s) : (1) Assumes the following versions (or more recent) of software modules are included in
* the project build :
Expand Down
4 changes: 2 additions & 2 deletions Cmd/net_cmd_args_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* NETWORK COMMAND ARGUMENT PARSING UTILITIES
*
* Filename : net_cmd_args_parser.h
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
* Note(s) : (1) Assumes the following versions (or more recent) of software modules are included in
* the project build :
Expand Down
4 changes: 2 additions & 2 deletions Cmd/net_cmd_output.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* NETWORK SHELL COMMAND OUTPUT UTILITIES
*
* Filename : net_cmd_output.c
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
* Note(s) : (1) Assumes the following versions (or more recent) of software modules are included in
* the project build :
Expand Down
4 changes: 2 additions & 2 deletions Cmd/net_cmd_output.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -20,7 +20,7 @@
* NETWORK SHELL COMMAND OUTPUT UTILITIES
*
* Filename : net_cmd_output.h
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
* Note(s) : (1) Assumes the following versions (or more recent) of software modules are included in
* the project build :
Expand Down
4 changes: 2 additions & 2 deletions Dev/Ether/A2Fx00/net_dev_a2fx00.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* ACTEL SMART FUSION A2Fx00
*
* Filename : net_dev_a2fx00.c
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
* Note(s) : (1) The following parts use the 'net_dev_a2fx00' driver:
* Actel A2F200
Expand Down
4 changes: 2 additions & 2 deletions Dev/Ether/A2Fx00/net_dev_a2fx00.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* ACTEL SMART FUSION A2Fx00
*
* Filename : net_dev_a2fx00.h
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Dev/Ether/AT91RM9200/net_dev_at91rm9200.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* AT91RM9200
*
* Filename : net_dev_at91rm9200.c
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Dev/Ether/AT91RM9200/net_dev_at91rm9200.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* AT91RM9200
*
* Filename : net_dev_at91rm9200.h
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Dev/Ether/DM9000/net_dev_dm9000.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* Davicom DM9000 (A/B/E)
*
* Filename : net_dev_dm9000.c
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
4 changes: 2 additions & 2 deletions Dev/Ether/DM9000/net_dev_dm9000.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
Expand All @@ -22,7 +22,7 @@
* Davicom DM9000 (A/B/E)
*
* Filename : net_dev_dm9000.h
* Version : V3.06.00
* Version : V3.06.01
*********************************************************************************************************
*/

Expand Down
Loading

0 comments on commit 4828512

Please sign in to comment.