Skip to content

Commit 8f02aa5

Browse files
Merge pull request #3 from weston-embedded/release/v2.01.01
Release/v2.01.01
2 parents 4719510 + 611323c commit 8f02aa5

File tree

8 files changed

+60
-26
lines changed

8 files changed

+60
-26
lines changed

Cfg/Template/smtp-c_cfg.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/SMTPc
44
* Simple Mail Transfer Protocol (client)
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -22,7 +22,7 @@
2222
* TEMPLATE
2323
*
2424
* Filename : smtp-c_cfg.h
25-
* Version : V2.01.00
25+
* Version : V2.01.01
2626
*********************************************************************************************************
2727
*/
2828

Cmd/smtp-c_cmd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/SMTPc
44
* Simple Mail Transfer Protocol (client)
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -20,7 +20,7 @@
2020
* uC/SMTPc CMD SOURCE CODE
2121
*
2222
* Filename : smtp-c_cmd.c
23-
* Version : V2.01.00
23+
* Version : V2.01.01
2424
*********************************************************************************************************
2525
* Note(s) : (1) Assumes the following versions (or more recent) of software modules are included in
2626
* the project build :

Cmd/smtp-c_cmd.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/SMTPc
44
* Simple Mail Transfer Protocol (client)
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -20,7 +20,7 @@
2020
* uC/SMTPc CMD SOURCE CODE
2121
*
2222
* Filename : smtp-c_cmd.h
23-
* Version : V2.01.00
23+
* Version : V2.01.01
2424
*********************************************************************************************************
2525
* Note(s) : (1) Assumes the following versions (or more recent) of software modules are included in
2626
* the project build :

Example/smtp-c_send.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
2222
*
2323
* Filename : smtp-c_send.c
24-
* Version : V2.01.00
24+
* Version : V2.01.01
2525
*********************************************************************************************************
2626
* Note(s) : (1) This example show how to send an e-mail with SMTP client
2727
*********************************************************************************************************

README.rst

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.. raw:: html
2+
3+
<a href="https://weston-embedded.com/micrium/overview">
4+
<p align="center">
5+
<img src="https://weston-embedded.com/images/logos/Github/uCOS_logo.png">
6+
</p>
7+
</a>
8+
9+
µC/OS is a full-featured embedded operating system originally developed by Micriµm™. In addition to the two highly popular kernels, µC/OS features support for TCP/IP, USB-Device, USB-Host, and Modbus, as well as a robust File System.
10+
11+
Since its founding in 1999 as a private company, Micriµm and its team of engineers have offered world-class embedded software components for the most critical and demanding real-time applications. Recognized as having some of the cleanest code in the industry, with easy-to-understand documentation, the Micrium real-time kernels, and software components have successfully been deployed in thousands of products worldwide across a broad range of industries. Micrium’s µC/OS-II™ kernel has been certified for use in safety-critical applications and remains a respected favorite in the medical, aerospace, and industrial markets. µC/OS continues to be the RTOS of choice for engineers requiring the most reliable and trusted solution for their mission-critical applications.
12+
13+
----------
14+
15+
.. raw:: HTML
16+
17+
<a href="https://weston-embedded.com">
18+
<p align="center">
19+
<img src="https://weston-embedded.com/images/logos/Github/WES_logo.png">
20+
</p>
21+
</a>
22+
23+
Founded by a team of former Micrium employees, Weston Embedded Solutions is the official custodian for the µC/OS RTOS and Stacks software repository to ensure it remains the trusted choice for embedded engineers around the world.
24+
25+
----------
26+
27+
Product Documentation and Release Notes
28+
***************
29+
https://micrium.atlassian.net/
30+
31+
Technical Support
32+
*****************
33+
https://weston-embedded.com/micrium-support
34+
35+
Example Projects
36+
*********
37+
https://weston-embedded.com/micrium-examples
38+
39+
Commercial Licensing Option
40+
*********
41+
https://weston-embedded.com/products/cesium
42+
43+
Who to Contact
44+
*********
45+
https://weston-embedded.com/company/contact

Source/smtp-c.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/SMTPc
44
* Simple Mail Transfer Protocol (client)
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -20,7 +20,7 @@
2020
* SMTP CLIENT
2121
*
2222
* Filename : smtp-c.c
23-
* Version : V2.01.00
23+
* Version : V2.01.01
2424
*********************************************************************************************************
2525
* Note(s) : (1) This code implements a subset of the SMTP protocol (RFC 2821). More precisely, the
2626
* following commands have been implemented:

Source/smtp-c.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* uC/SMTPc
44
* Simple Mail Transfer Protocol (client)
55
*
6-
* Copyright 2004-2020 Silicon Laboratories Inc. www.silabs.com
6+
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
77
*
88
* SPDX-License-Identifier: APACHE-2.0
99
*
@@ -20,7 +20,7 @@
2020
* SMTP CLIENT
2121
*
2222
* Filename : smtp-c.h
23-
* Version : V2.01.00
23+
* Version : V2.01.01
2424
*********************************************************************************************************
2525
* Note(s) : (1) This code implements a subset of the SMTP protocol (RFC 2821). More precisely, the
2626
* following commands have been implemented:
@@ -77,7 +77,7 @@
7777
*********************************************************************************************************
7878
*/
7979

80-
#define SMTPc_VERSION 20100u /* See Note #1. */
80+
#define SMTPc_VERSION 20101u /* See Note #1. */
8181

8282

8383
/*
@@ -635,9 +635,9 @@ void SMTPc_SetMsg (SMTPc_MSG *msg,
635635

636636
#ifndef SMTPc_CFG_USERNAME_MAX_LEN
637637
#error "SMTPc_CFG_USERNAME_MAX_LEN not #define'd in 'smtp-c_cfg.h' see template file in package named 'smtp-c_cfg.h'"
638-
#elif ((SMTMc_CFG_USERNAME_MAX_LEN < 0) || \
639-
(SMTMc_CFG_USERNAME_MAX_LEN > DEF_INT_08U_MAX_VAL))
640-
#error "SMTMc_CFG_USERNAME_MAX_LEN illegally #define'd in 'smtp-c_cfg.h'[MUST be >= 0 && <= 255]"
638+
#elif ((SMTPc_CFG_USERNAME_MAX_LEN < 0) || \
639+
(SMTPc_CFG_USERNAME_MAX_LEN > DEF_INT_08U_MAX_VAL))
640+
#error "SMTPc_CFG_USERNAME_MAX_LEN illegally #define'd in 'smtp-c_cfg.h'[MUST be >= 0 && <= 255]"
641641
#endif
642642

643643

readme.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)