Release 6.2.1 on 08 Mar 2023. Expand to see details.

29eee6fe8 Update function header and version to 6.2.1
e22a02169 Fix compile errors in TLS
3e0a14c1c Fix network driver for regression test.
442f3adfa Fix compiler warnings in NetXDuo
1c87864dc [SNTP & TELNET] Clear the client ID in delete function for SNTP and TELNET.
1a957bf48 Reported ADU agent state as IDLE to server after receiving cancel command.
d648902b2 [BSD] Corrected the result of FIONREAD when using TCP socket.
494f0016f create netxduo cmsis-pack
c5519bdf8 Add ADU version string
f52279c97 Include TLS port header in nx_secure_x509.h
cf753549b Fix packet leak in TLS 1.3
be8943659 Update PnP interface to use ADU GA model
17e601544 Fix the logic to cleanup key material
11e65bacd Initialize metadata for certificate using packet buffer
7ff1841ac Fix conditional build check for TLS 1.3
This commit is contained in:
Tiejun Zhou 2023-03-08 08:27:35 +00:00
parent 41a25a62d0
commit c55606a018
59 changed files with 104 additions and 71 deletions

View File

@ -4662,7 +4662,7 @@ NX_BSD_SOCKET *bsd_socket_ptr;
/* FUNCTION RELEASE */
/* */
/* ioctl PORTABLE C */
/* 6.1 */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Yuxin Zhou, Microsoft Corporation */
@ -4704,6 +4704,9 @@ NX_BSD_SOCKET *bsd_socket_ptr;
/* 05-19-2020 Yuxin Zhou Initial Version 6.0 */
/* 09-30-2020 Yuxin Zhou Modified comment(s), */
/* resulting in version 6.1 */
/* 03-08-2023 Wenhui Xie Modified comment(s), corrected*/
/* the result of FIONREAD, */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
INT ioctl(INT sockID, INT command, INT *result)
@ -4782,6 +4785,10 @@ UINT status;
NX_BSD_ERROR(NX_BSD_MUTEX_ERROR, __LINE__);
return(NX_SOC_ERROR);
}
else
{
*result += (INT)(bsd_socket_ptr -> nx_bsd_socket_received_byte_count);
}
}
else if (udp_socket_ptr)
{

View File

@ -946,7 +946,7 @@ UINT status;
/* FUNCTION RELEASE */
/* */
/* _nx_ftp_client_delete PORTABLE C */
/* 6.x */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Yuxin Zhou, Microsoft Corporation */
@ -980,9 +980,9 @@ UINT status;
/* 05-19-2020 Yuxin Zhou Initial Version 6.0 */
/* 09-30-2020 Yuxin Zhou Modified comment(s), */
/* resulting in version 6.1 */
/* xx-xx-xxxx Wenhui Xie Modified comment(s), */
/* 03-08-2023 Wenhui Xie Modified comment(s), */
/* cleared the client ID, */
/* resulting in version 6.x */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
UINT _nx_ftp_client_delete(NX_FTP_CLIENT *ftp_client_ptr)

View File

@ -82,7 +82,7 @@ static ULONG process_timerticks = 0;
/* FUNCTION RELEASE */
/* */
/* _nxe_sntp_client_create PORTABLE C */
/* 6.1 */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Yuxin Zhou, Microsoft Corporation */
@ -123,6 +123,9 @@ static ULONG process_timerticks = 0;
/* 05-19-2020 Yuxin Zhou Initial Version 6.0 */
/* 09-30-2020 Yuxin Zhou Modified comment(s), */
/* resulting in version 6.1 */
/* 03-08-2023 Wenhui Xie Modified comment(s), */
/* checked the client ID, */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
UINT _nxe_sntp_client_create(NX_SNTP_CLIENT *client_ptr, NX_IP *ip_ptr, UINT iface_index, NX_PACKET_POOL *packet_pool_ptr,
@ -142,6 +145,14 @@ UINT status;
return(NX_PTR_ERROR);
}
/* Check for the client ID. */
if ((client_ptr == NX_NULL) || (client_ptr -> nx_sntp_client_id == NX_SNTP_ID))
{
/* Return error status. */
return(NX_PTR_ERROR);
}
/* Check for invalid network interface input. */
if (iface_index >= NX_MAX_PHYSICAL_INTERFACES)
{
@ -435,7 +446,7 @@ UINT status;
/* FUNCTION RELEASE */
/* */
/* _nx_sntp_client_delete PORTABLE C */
/* 6.1 */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Yuxin Zhou, Microsoft Corporation */
@ -475,11 +486,17 @@ UINT status;
/* 05-19-2020 Yuxin Zhou Initial Version 6.0 */
/* 09-30-2020 Yuxin Zhou Modified comment(s), */
/* resulting in version 6.1 */
/* 03-08-2023 Wenhui Xie Modified comment(s), */
/* cleared the client ID, */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
UINT _nx_sntp_client_delete(NX_SNTP_CLIENT *client_ptr)
{
/* Clear the client ID. */
client_ptr -> nx_sntp_client_id = 0;
/* Suspend the SNTP Client thread. */
tx_thread_suspend(&client_ptr -> nx_sntp_client_thread);

View File

@ -416,7 +416,7 @@ UINT status;
/* FUNCTION RELEASE */
/* */
/* _nx_telnet_client_delete PORTABLE C */
/* 6.1 */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Yuxin Zhou, Microsoft Corporation */
@ -449,6 +449,9 @@ UINT status;
/* 05-19-2020 Yuxin Zhou Initial Version 6.0 */
/* 09-30-2020 Yuxin Zhou Modified comment(s), */
/* resulting in version 6.1 */
/* 03-08-2023 Wenhui Xie Modified comment(s), */
/* cleared the client ID, */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
UINT _nx_telnet_client_delete(NX_TELNET_CLIENT *client_ptr)
@ -462,6 +465,9 @@ UINT _nx_telnet_client_delete(NX_TELNET_CLIENT *client_ptr)
return(NX_TELNET_NOT_DISCONNECTED);
}
/* Clear the client ID. */
client_ptr -> nx_telnet_client_id = 0;
/* Delete the socket. */
nx_tcp_socket_delete(&(client_ptr -> nx_telnet_client_socket));

View File

@ -595,7 +595,7 @@ UINT status;
/* FUNCTION RELEASE */
/* */
/* _nx_telnet_server_disconnect PORTABLE C */
/* 6.x */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Yuxin Zhou, Microsoft Corporation */
@ -631,10 +631,10 @@ UINT status;
/* 05-19-2020 Yuxin Zhou Initial Version 6.0 */
/* 09-30-2020 Yuxin Zhou Modified comment(s), */
/* resulting in version 6.1 */
/* xx-xx-xxxx Wenhui Xie Modified comment(s), and */
/* 03-08-2023 Wenhui Xie Modified comment(s), and */
/* corrected the processing of */
/* disconnection, */
/* resulting in version 6.x */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
UINT _nx_telnet_server_disconnect(NX_TELNET_SERVER *server_ptr, UINT logical_connection)

View File

@ -26,7 +26,7 @@
/* APPLICATION INTERFACE DEFINITION RELEASE */
/* */
/* nx_api.h PORTABLE C */
/* 6.2.0 */
/* 6.2.1 */
/* AUTHOR */
/* */
/* Yuxin Zhou, Microsoft Corporation */
@ -91,6 +91,9 @@
/* 10-31-2022 Tiejun Zhou Modified comment(s), and */
/* updated product constants, */
/* resulting in version 6.2.0 */
/* 03-08-2023 Tiejun Zhou Modified comment(s), and */
/* updated product constants, */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
@ -412,7 +415,7 @@ VOID _nx_trace_event_update(TX_TRACE_BUFFER_ENTRY *event, ULONG timestamp, ULONG
#define AZURE_RTOS_NETX
#define NETX_MAJOR_VERSION 6
#define NETX_MINOR_VERSION 2
#define NETX_PATCH_VERSION 0
#define NETX_PATCH_VERSION 1
/* The following symbols are defined for backward compatibility reasons.*/
#define EL_PRODUCT_NETX

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX ARCv2_EM/MetaWare Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX ARCv2_EM/MetaWare Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX ARC_HS/MetaWare Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX ARC_HS/MetaWare Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -201,7 +201,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX ARM9/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX ARM9/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -201,7 +201,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX ARM9/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX ARM9/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -201,7 +201,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX ARM9/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX ARM9/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -201,7 +201,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX C667X/TI Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX C667X/TI Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A15/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A15/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A5/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A5/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A7/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A7/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A5/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A5/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A5x/AC6 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A5x/AC6 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A7/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A7/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A7/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A7/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A7/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A7/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A8/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A8/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A8/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A8/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A8/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A8/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A9/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A9/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A9/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A9/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A9/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A9/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A9/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-A9/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M0/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M0/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -184,7 +184,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M0/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M0/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -181,7 +181,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M0/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M0/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M23/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M23/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -182,7 +182,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M23/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M23/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -181,7 +181,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M23/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M23/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M3/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M3/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -183,7 +183,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M3/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M3/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -181,7 +181,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M3/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M3/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M3/Keil Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M3/Keil Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M33/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M33/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -26,7 +26,7 @@
/* PORT SPECIFIC C INFORMATION RELEASE */
/* */
/* nx_port.h Cortex-M33/GNU */
/* 6.x */
/* 6.2.1 */
/* */
/* AUTHOR */
/* */
@ -43,9 +43,9 @@
/* DATE NAME DESCRIPTION */
/* */
/* 12-31-2020 Yuxin Zhou Initial Version 6.1.3 */
/* xx-xx-xxxx Yajun Xia Modified comment(s), */
/* 03-08-2023 Yajun Xia Modified comment(s), */
/* removed macros of NetX Duo, */
/* resulting in version 6.x */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
@ -182,7 +182,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M33/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M33/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -181,7 +181,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M33/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M33/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M4/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M4/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -184,7 +184,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M4/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M4/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -181,7 +181,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M4/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M4/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M4/Keil Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M4/Keil Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M7/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M7/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -184,7 +184,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M7/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M7/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -181,7 +181,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M7/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-M7/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R4/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R4/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -179,7 +179,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R4/AC6 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R4/AC6 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -180,7 +180,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R4/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R4/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R4/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R4/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R5/AC5 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R5/AC5 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -180,7 +180,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R5/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R5/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R5/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Cortex-R5/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -200,7 +200,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Linux/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Linux/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -26,7 +26,7 @@
/* PORT SPECIFIC C INFORMATION RELEASE */
/* */
/* nx_port.h RXv2/CCRX */
/* 6.x */
/* 6.2.1 */
/* */
/* AUTHOR */
/* */
@ -46,9 +46,9 @@
/* 04-25-2022 Yuxin Zhou Modified comment(s), and */
/* renamed temporary variable, */
/* resulting in version 6.1.11 */
/* xx-xx-xxxx Yajun Xia Modified comment(s), */
/* 03-08-2023 Yajun Xia Modified comment(s), */
/* removed macros of NetX Duo, */
/* resulting in version 6.x */
/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
@ -207,7 +207,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX RXv2/CCRX Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX RXv2/CCRX Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX RXv2/GNU Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX RXv2/GNU Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -204,7 +204,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX RXv2/IAR Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX RXv2/IAR Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif

View File

@ -201,7 +201,7 @@
#ifdef NX_SYSTEM_INIT
CHAR _nx_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Win32/VS2019 Version 6.2.0 *";
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Win32/VS2019 Version 6.2.1 *";
#else
extern CHAR _nx_version_id[];
#endif