summaryrefslogtreecommitdiff
path: root/ports/cortex_m55
diff options
context:
space:
mode:
authorTiejun Zhou <[email protected]>2023-03-08 08:26:22 +0000
committerTiejun Zhou <[email protected]>2023-03-08 08:26:22 +0000
commit2aa19f3de0b6cf09bb9dca78c8a53fe337b8f0f7 (patch)
tree8ec91a64e0831e3100a6ad9a5dec41d9fd7fc74f /ports/cortex_m55
parent745395d6a2f931c85c4428425db21eb7d03b4324 (diff)
Release 6.2.1 on 08 Mar 2023. Expand to see details.v6.2.1_rel
cee19603d Include tx_user.h conditionally. e40e08007 Update owners d69641273 Update release date and version 394aee52f Add tx_user.h to GNU port assembly files 5cca2ddd0 RISC-V 64 bit port for Microchip e0f2c373c Link Winmm.lib that required by the high-resolution timer. 6af472a68 Update Win32 port with high resolution timer. aea7b556a Add DMB ISH barrier inst in ARMv8-A SMP scheduler 19091a262 Add .section .preamble to m3 m4 m7 module ports ced60e1b7 Add missing parenthesis in ports assembly file 309dc77ca Modules Cortex-A7 IAR new port c752a4063 Modules Cortex-A7 GNU new port dc224b90f Fix race condition in tx_thread_wait_abort and update regression test 6e261f5b7 create threadx cmsis-pack
Diffstat (limited to 'ports/cortex_m55')
-rw-r--r--ports/cortex_m55/ac6/inc/tx_port.h8
-rw-r--r--ports/cortex_m55/ac6/src/tx_initialize_low_level.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_thread_context_restore.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_thread_context_save.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_thread_interrupt_control.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_thread_interrupt_disable.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_thread_interrupt_restore.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_thread_schedule.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_thread_secure_stack_allocate.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_thread_secure_stack_free.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_thread_secure_stack_initialize.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_thread_stack_build.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_thread_system_return.S6
-rw-r--r--ports/cortex_m55/ac6/src/tx_timer_interrupt.S6
-rw-r--r--ports/cortex_m55/gnu/inc/tx_port.h8
-rw-r--r--ports/cortex_m55/gnu/src/tx_initialize_low_level.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_thread_context_restore.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_thread_context_save.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_thread_interrupt_control.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_thread_interrupt_disable.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_thread_interrupt_restore.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_thread_schedule.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_thread_secure_stack_allocate.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_thread_secure_stack_free.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_thread_secure_stack_initialize.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_thread_stack_build.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_thread_system_return.S6
-rw-r--r--ports/cortex_m55/gnu/src/tx_timer_interrupt.S6
-rw-r--r--ports/cortex_m55/iar/inc/tx_port.h8
-rw-r--r--ports/cortex_m55/iar/src/tx_thread_schedule.s6
30 files changed, 93 insertions, 93 deletions
diff --git a/ports/cortex_m55/ac6/inc/tx_port.h b/ports/cortex_m55/ac6/inc/tx_port.h
index 0993e31f..2fb2051d 100644
--- a/ports/cortex_m55/ac6/inc/tx_port.h
+++ b/ports/cortex_m55/ac6/inc/tx_port.h
@@ -26,7 +26,7 @@
/* PORT SPECIFIC C INFORMATION RELEASE */
/* */
/* tx_port.h Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* */
/* AUTHOR */
/* */
@@ -76,8 +76,8 @@
/* macro to port-specific, */
/* described BASEPRI usage, */
/* resulting in version 6.1.12 */
-/* xx-xx-xxxx Scott Larson Removed unneeded #include, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Removed unneeded #include, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
@@ -646,7 +646,7 @@ VOID _tx_thread_interrupt_restore(UIN
#ifdef TX_THREAD_INIT
CHAR _tx_version_id[] =
- "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX Cortex-M55/AC6 Version 6.1.12 *";
+ "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX Cortex-M55/AC6 Version 6.2.1 *";
#else
#ifdef TX_MISRA_ENABLE
extern CHAR _tx_version_id[100];
diff --git a/ports/cortex_m55/ac6/src/tx_initialize_low_level.S b/ports/cortex_m55/ac6/src/tx_initialize_low_level.S
index 8adf9958..a48b3034 100644
--- a/ports/cortex_m55/ac6/src/tx_initialize_low_level.S
+++ b/ports/cortex_m55/ac6/src/tx_initialize_low_level.S
@@ -35,7 +35,7 @@ HEAP_SIZE = 0x00000000
/* FUNCTION RELEASE */
/* */
/* _tx_initialize_low_level Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -69,8 +69,8 @@ HEAP_SIZE = 0x00000000
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_initialize_low_level(VOID)
diff --git a/ports/cortex_m55/ac6/src/tx_thread_context_restore.S b/ports/cortex_m55/ac6/src/tx_thread_context_restore.S
index 6f85d3fd..f9a176c9 100644
--- a/ports/cortex_m55/ac6/src/tx_thread_context_restore.S
+++ b/ports/cortex_m55/ac6/src/tx_thread_context_restore.S
@@ -30,7 +30,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_context_restore Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -60,8 +60,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_context_restore(VOID)
diff --git a/ports/cortex_m55/ac6/src/tx_thread_context_save.S b/ports/cortex_m55/ac6/src/tx_thread_context_save.S
index fa310ceb..f38b5ed0 100644
--- a/ports/cortex_m55/ac6/src/tx_thread_context_save.S
+++ b/ports/cortex_m55/ac6/src/tx_thread_context_save.S
@@ -30,7 +30,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_context_save Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -60,8 +60,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_context_save(VOID)
diff --git a/ports/cortex_m55/ac6/src/tx_thread_interrupt_control.S b/ports/cortex_m55/ac6/src/tx_thread_interrupt_control.S
index f32ac7f1..2dfa3833 100644
--- a/ports/cortex_m55/ac6/src/tx_thread_interrupt_control.S
+++ b/ports/cortex_m55/ac6/src/tx_thread_interrupt_control.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_interrupt_control Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -58,8 +58,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// UINT _tx_thread_interrupt_control(UINT new_posture)
diff --git a/ports/cortex_m55/ac6/src/tx_thread_interrupt_disable.S b/ports/cortex_m55/ac6/src/tx_thread_interrupt_disable.S
index ee86865d..44100dca 100644
--- a/ports/cortex_m55/ac6/src/tx_thread_interrupt_disable.S
+++ b/ports/cortex_m55/ac6/src/tx_thread_interrupt_disable.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_interrupt_disable Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -58,8 +58,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// UINT _tx_thread_interrupt_disable(VOID)
diff --git a/ports/cortex_m55/ac6/src/tx_thread_interrupt_restore.S b/ports/cortex_m55/ac6/src/tx_thread_interrupt_restore.S
index 46809b6e..1b2f4883 100644
--- a/ports/cortex_m55/ac6/src/tx_thread_interrupt_restore.S
+++ b/ports/cortex_m55/ac6/src/tx_thread_interrupt_restore.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_interrupt_restore Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -58,8 +58,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_interrupt_restore(UINT previous_posture)
diff --git a/ports/cortex_m55/ac6/src/tx_thread_schedule.S b/ports/cortex_m55/ac6/src/tx_thread_schedule.S
index 55ce02a8..7ad1e86e 100644
--- a/ports/cortex_m55/ac6/src/tx_thread_schedule.S
+++ b/ports/cortex_m55/ac6/src/tx_thread_schedule.S
@@ -31,7 +31,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_schedule Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -72,9 +72,9 @@
/* resulting in version 6.1.7 */
/* 04-25-2022 Scott Larson Added BASEPRI support, */
/* resulting in version 6.1.11 */
-/* xx-xx-xxxx Scott Larson Added preproc FPU option, */
+/* 03-08-2023 Scott Larson Added preproc FPU option, */
/* included tx_user.h, */
-/* resulting in version 6.x */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_schedule(VOID)
diff --git a/ports/cortex_m55/ac6/src/tx_thread_secure_stack_allocate.S b/ports/cortex_m55/ac6/src/tx_thread_secure_stack_allocate.S
index d539ef0b..d57a4c30 100644
--- a/ports/cortex_m55/ac6/src/tx_thread_secure_stack_allocate.S
+++ b/ports/cortex_m55/ac6/src/tx_thread_secure_stack_allocate.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_secure_stack_allocate Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -59,8 +59,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// UINT _tx_thread_secure_stack_allocate(TX_THREAD *thread_ptr, ULONG stack_size)
diff --git a/ports/cortex_m55/ac6/src/tx_thread_secure_stack_free.S b/ports/cortex_m55/ac6/src/tx_thread_secure_stack_free.S
index ee65a6ad..dc7c9f16 100644
--- a/ports/cortex_m55/ac6/src/tx_thread_secure_stack_free.S
+++ b/ports/cortex_m55/ac6/src/tx_thread_secure_stack_free.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_secure_stack_free Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -57,8 +57,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// UINT _tx_thread_secure_stack_free(TX_THREAD *thread_ptr)
diff --git a/ports/cortex_m55/ac6/src/tx_thread_secure_stack_initialize.S b/ports/cortex_m55/ac6/src/tx_thread_secure_stack_initialize.S
index fc417fe2..b4ca1d3f 100644
--- a/ports/cortex_m55/ac6/src/tx_thread_secure_stack_initialize.S
+++ b/ports/cortex_m55/ac6/src/tx_thread_secure_stack_initialize.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_secure_stack_initialize Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -61,8 +61,8 @@
/* secure stack initialization */
/* macro to port-specific, */
/* resulting in version 6.1.12 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_secure_stack_initialize(VOID)
diff --git a/ports/cortex_m55/ac6/src/tx_thread_stack_build.S b/ports/cortex_m55/ac6/src/tx_thread_stack_build.S
index 34d6f57e..0c647806 100644
--- a/ports/cortex_m55/ac6/src/tx_thread_stack_build.S
+++ b/ports/cortex_m55/ac6/src/tx_thread_stack_build.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_stack_build Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -60,8 +60,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_stack_build(TX_THREAD *thread_ptr, VOID (*function_ptr)(VOID))
diff --git a/ports/cortex_m55/ac6/src/tx_thread_system_return.S b/ports/cortex_m55/ac6/src/tx_thread_system_return.S
index 4e3569b4..c089500f 100644
--- a/ports/cortex_m55/ac6/src/tx_thread_system_return.S
+++ b/ports/cortex_m55/ac6/src/tx_thread_system_return.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_system_return Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -60,8 +60,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_system_return(VOID)
diff --git a/ports/cortex_m55/ac6/src/tx_timer_interrupt.S b/ports/cortex_m55/ac6/src/tx_timer_interrupt.S
index 4969f0c1..2f2a7da4 100644
--- a/ports/cortex_m55/ac6/src/tx_timer_interrupt.S
+++ b/ports/cortex_m55/ac6/src/tx_timer_interrupt.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_timer_interrupt Cortex-M55/AC6 */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -61,8 +61,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_timer_interrupt(VOID)
diff --git a/ports/cortex_m55/gnu/inc/tx_port.h b/ports/cortex_m55/gnu/inc/tx_port.h
index 63110e85..83e009ff 100644
--- a/ports/cortex_m55/gnu/inc/tx_port.h
+++ b/ports/cortex_m55/gnu/inc/tx_port.h
@@ -26,7 +26,7 @@
/* PORT SPECIFIC C INFORMATION RELEASE */
/* */
/* tx_port.h Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* */
/* AUTHOR */
/* */
@@ -76,8 +76,8 @@
/* macro to port-specific, */
/* described BASEPRI usage, */
/* resulting in version 6.1.12 */
-/* xx-xx-xxxx Scott Larson Removed unneeded #include, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Removed unneeded #include, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
@@ -646,7 +646,7 @@ VOID _tx_thread_interrupt_restore(UIN
#ifdef TX_THREAD_INIT
CHAR _tx_version_id[] =
- "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX Cortex-M55/GNU Version 6.1.12 *";
+ "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX Cortex-M55/GNU Version 6.2.1 *";
#else
#ifdef TX_MISRA_ENABLE
extern CHAR _tx_version_id[100];
diff --git a/ports/cortex_m55/gnu/src/tx_initialize_low_level.S b/ports/cortex_m55/gnu/src/tx_initialize_low_level.S
index 3d7736eb..2bd6bcee 100644
--- a/ports/cortex_m55/gnu/src/tx_initialize_low_level.S
+++ b/ports/cortex_m55/gnu/src/tx_initialize_low_level.S
@@ -35,7 +35,7 @@ HEAP_SIZE = 0x00000000
/* FUNCTION RELEASE */
/* */
/* _tx_initialize_low_level Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -71,8 +71,8 @@ HEAP_SIZE = 0x00000000
/* 09-30-2020 Scott Larson Initial Version 6.1 */
/* 01-31-2022 Scott Larson Fixed predefined macro name, */
/* resulting in version 6.1.10 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_initialize_low_level(VOID)
diff --git a/ports/cortex_m55/gnu/src/tx_thread_context_restore.S b/ports/cortex_m55/gnu/src/tx_thread_context_restore.S
index 31fb733f..a857658d 100644
--- a/ports/cortex_m55/gnu/src/tx_thread_context_restore.S
+++ b/ports/cortex_m55/gnu/src/tx_thread_context_restore.S
@@ -30,7 +30,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_context_restore Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -60,8 +60,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_context_restore(VOID)
diff --git a/ports/cortex_m55/gnu/src/tx_thread_context_save.S b/ports/cortex_m55/gnu/src/tx_thread_context_save.S
index d4a362e9..69721a50 100644
--- a/ports/cortex_m55/gnu/src/tx_thread_context_save.S
+++ b/ports/cortex_m55/gnu/src/tx_thread_context_save.S
@@ -30,7 +30,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_context_save Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -60,8 +60,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_context_save(VOID)
diff --git a/ports/cortex_m55/gnu/src/tx_thread_interrupt_control.S b/ports/cortex_m55/gnu/src/tx_thread_interrupt_control.S
index 681e60cd..c153fb3f 100644
--- a/ports/cortex_m55/gnu/src/tx_thread_interrupt_control.S
+++ b/ports/cortex_m55/gnu/src/tx_thread_interrupt_control.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_interrupt_control Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -58,8 +58,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// UINT _tx_thread_interrupt_control(UINT new_posture)
diff --git a/ports/cortex_m55/gnu/src/tx_thread_interrupt_disable.S b/ports/cortex_m55/gnu/src/tx_thread_interrupt_disable.S
index e50d13a4..7bf70717 100644
--- a/ports/cortex_m55/gnu/src/tx_thread_interrupt_disable.S
+++ b/ports/cortex_m55/gnu/src/tx_thread_interrupt_disable.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_interrupt_disable Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -58,8 +58,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// UINT _tx_thread_interrupt_disable(VOID)
diff --git a/ports/cortex_m55/gnu/src/tx_thread_interrupt_restore.S b/ports/cortex_m55/gnu/src/tx_thread_interrupt_restore.S
index 246a81d5..10fe18da 100644
--- a/ports/cortex_m55/gnu/src/tx_thread_interrupt_restore.S
+++ b/ports/cortex_m55/gnu/src/tx_thread_interrupt_restore.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_interrupt_restore Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -58,8 +58,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_interrupt_restore(UINT previous_posture)
diff --git a/ports/cortex_m55/gnu/src/tx_thread_schedule.S b/ports/cortex_m55/gnu/src/tx_thread_schedule.S
index 0bb687fd..9bf19f5d 100644
--- a/ports/cortex_m55/gnu/src/tx_thread_schedule.S
+++ b/ports/cortex_m55/gnu/src/tx_thread_schedule.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_schedule Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -70,8 +70,8 @@
/* resulting in version 6.1.10 */
/* 04-25-2022 Scott Larson Added BASEPRI support, */
/* resulting in version 6.1.11 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_schedule(VOID)
diff --git a/ports/cortex_m55/gnu/src/tx_thread_secure_stack_allocate.S b/ports/cortex_m55/gnu/src/tx_thread_secure_stack_allocate.S
index f0750517..25b27bf5 100644
--- a/ports/cortex_m55/gnu/src/tx_thread_secure_stack_allocate.S
+++ b/ports/cortex_m55/gnu/src/tx_thread_secure_stack_allocate.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_secure_stack_allocate Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -59,8 +59,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// UINT _tx_thread_secure_stack_allocate(TX_THREAD *thread_ptr, ULONG stack_size)
diff --git a/ports/cortex_m55/gnu/src/tx_thread_secure_stack_free.S b/ports/cortex_m55/gnu/src/tx_thread_secure_stack_free.S
index 13242a97..ee112151 100644
--- a/ports/cortex_m55/gnu/src/tx_thread_secure_stack_free.S
+++ b/ports/cortex_m55/gnu/src/tx_thread_secure_stack_free.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_secure_stack_free Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -57,8 +57,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// UINT _tx_thread_secure_stack_free(TX_THREAD *thread_ptr)
diff --git a/ports/cortex_m55/gnu/src/tx_thread_secure_stack_initialize.S b/ports/cortex_m55/gnu/src/tx_thread_secure_stack_initialize.S
index 5f48e0a2..74946e40 100644
--- a/ports/cortex_m55/gnu/src/tx_thread_secure_stack_initialize.S
+++ b/ports/cortex_m55/gnu/src/tx_thread_secure_stack_initialize.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_secure_stack_initialize Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -61,8 +61,8 @@
/* secure stack initialization */
/* macro to port-specific, */
/* resulting in version 6.1.12 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_secure_stack_initialize(VOID)
diff --git a/ports/cortex_m55/gnu/src/tx_thread_stack_build.S b/ports/cortex_m55/gnu/src/tx_thread_stack_build.S
index e2b16358..cb17019c 100644
--- a/ports/cortex_m55/gnu/src/tx_thread_stack_build.S
+++ b/ports/cortex_m55/gnu/src/tx_thread_stack_build.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_stack_build Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -60,8 +60,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_stack_build(TX_THREAD *thread_ptr, VOID (*function_ptr)(VOID))
diff --git a/ports/cortex_m55/gnu/src/tx_thread_system_return.S b/ports/cortex_m55/gnu/src/tx_thread_system_return.S
index 2bf6f8f5..10642e07 100644
--- a/ports/cortex_m55/gnu/src/tx_thread_system_return.S
+++ b/ports/cortex_m55/gnu/src/tx_thread_system_return.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_system_return Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -60,8 +60,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_system_return(VOID)
diff --git a/ports/cortex_m55/gnu/src/tx_timer_interrupt.S b/ports/cortex_m55/gnu/src/tx_timer_interrupt.S
index 757881aa..c21ff5cb 100644
--- a/ports/cortex_m55/gnu/src/tx_timer_interrupt.S
+++ b/ports/cortex_m55/gnu/src/tx_timer_interrupt.S
@@ -27,7 +27,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_timer_interrupt Cortex-M55/GNU */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -61,8 +61,8 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 Scott Larson Initial Version 6.1 */
-/* xx-xx-xxxx Scott Larson Include tx_user.h, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Include tx_user.h, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_timer_interrupt(VOID)
diff --git a/ports/cortex_m55/iar/inc/tx_port.h b/ports/cortex_m55/iar/inc/tx_port.h
index 505f9f8a..5fdfd4d7 100644
--- a/ports/cortex_m55/iar/inc/tx_port.h
+++ b/ports/cortex_m55/iar/inc/tx_port.h
@@ -26,7 +26,7 @@
/* PORT SPECIFIC C INFORMATION RELEASE */
/* */
/* tx_port.h Cortex-M55/IAR */
-/* 6.x */
+/* 6.2.1 */
/* */
/* AUTHOR */
/* */
@@ -76,8 +76,8 @@
/* macro to port-specific, */
/* described BASEPRI usage, */
/* resulting in version 6.1.12 */
-/* xx-xx-xxxx Scott Larson Removed unneeded #include, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Removed unneeded #include, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
@@ -646,7 +646,7 @@ VOID _tx_thread_interrupt_restore(UIN
#ifdef TX_THREAD_INIT
CHAR _tx_version_id[] =
- "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX Cortex-M55/IAR Version 6.1.12 *";
+ "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX Cortex-M55/IAR Version 6.2.1 *";
#else
#ifdef TX_MISRA_ENABLE
extern CHAR _tx_version_id[100];
diff --git a/ports/cortex_m55/iar/src/tx_thread_schedule.s b/ports/cortex_m55/iar/src/tx_thread_schedule.s
index 378438fb..8f151560 100644
--- a/ports/cortex_m55/iar/src/tx_thread_schedule.s
+++ b/ports/cortex_m55/iar/src/tx_thread_schedule.s
@@ -43,7 +43,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_schedule Cortex-M55/IAR */
-/* 6.x */
+/* 6.2.1 */
/* AUTHOR */
/* */
/* Scott Larson, Microsoft Corporation */
@@ -84,8 +84,8 @@
/* resulting in version 6.1.7 */
/* 04-25-2022 Scott Larson Added BASEPRI support, */
/* resulting in version 6.1.11 */
-/* xx-xx-xxxx Scott Larson Added preproc FPU option, */
-/* resulting in version 6.x */
+/* 03-08-2023 Scott Larson Added preproc FPU option, */
+/* resulting in version 6.2.1 */
/* */
/**************************************************************************/
// VOID _tx_thread_schedule(VOID)