diff options
| author | TiejunZhou <[email protected]> | 2023-12-28 10:51:29 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-12-28 10:51:29 +0800 |
| commit | d9ffb0f97dcc97c5dec5675439ea65f3f87b466b (patch) | |
| tree | a3cae81f6acfae7e36ea51acf93fb1fe81de68c8 /ports/cortex_a15/ac6 | |
| parent | e73843f6d4ec7d17cb91c6391405f94e7672f4e8 (diff) | |
Update release date and version (#338)
* Update version number in API header
* Update release date and version
Diffstat (limited to 'ports/cortex_a15/ac6')
14 files changed, 40 insertions, 40 deletions
diff --git a/ports/cortex_a15/ac6/inc/tx_port.h b/ports/cortex_a15/ac6/inc/tx_port.h index cbd4dfe1..8b73552b 100644 --- a/ports/cortex_a15/ac6/inc/tx_port.h +++ b/ports/cortex_a15/ac6/inc/tx_port.h @@ -321,7 +321,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX ARMv7-A Version 6.3.0 *"; + "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX ARMv7-A Version 6.4.0 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a15/ac6/src/tx_thread_context_restore.S b/ports/cortex_a15/ac6/src/tx_thread_context_restore.S index 0a1b296b..07210cc3 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_context_restore.S +++ b/ports/cortex_a15/ac6/src/tx_thread_context_restore.S @@ -52,7 +52,7 @@ IRQ_MODE = 0x12 // IRQ mode /* FUNCTION RELEASE */ /* */ /* _tx_thread_context_restore ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -93,9 +93,9 @@ IRQ_MODE = 0x12 // IRQ mode /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ .global _tx_thread_context_restore diff --git a/ports/cortex_a15/ac6/src/tx_thread_context_save.S b/ports/cortex_a15/ac6/src/tx_thread_context_save.S index 5c26fbda..54fca838 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_context_save.S +++ b/ports/cortex_a15/ac6/src/tx_thread_context_save.S @@ -45,7 +45,7 @@ /* FUNCTION RELEASE */ /* */ /* _tx_thread_context_save ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -85,9 +85,9 @@ /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ .global _tx_thread_context_save diff --git a/ports/cortex_a15/ac6/src/tx_thread_fiq_nesting_end.S b/ports/cortex_a15/ac6/src/tx_thread_fiq_nesting_end.S index 79ba41e6..b43c19fd 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_fiq_nesting_end.S +++ b/ports/cortex_a15/ac6/src/tx_thread_fiq_nesting_end.S @@ -45,7 +45,7 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits /* FUNCTION RELEASE */ /* */ /* _tx_thread_fiq_nesting_end ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -90,9 +90,9 @@ FIQ_MODE_BITS = 0x11 // FIQ mode bits /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ #if defined(THUMB_MODE) diff --git a/ports/cortex_a15/ac6/src/tx_thread_fiq_nesting_start.S b/ports/cortex_a15/ac6/src/tx_thread_fiq_nesting_start.S index 3f8fbbce..e867df42 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_fiq_nesting_start.S +++ b/ports/cortex_a15/ac6/src/tx_thread_fiq_nesting_start.S @@ -41,7 +41,7 @@ SYS_MODE_BITS = 0x1F // System mode bits /* FUNCTION RELEASE */ /* */ /* _tx_thread_fiq_nesting_start ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -83,9 +83,9 @@ SYS_MODE_BITS = 0x1F // System mode bits /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ #if defined(THUMB_MODE) diff --git a/ports/cortex_a15/ac6/src/tx_thread_interrupt_control.S b/ports/cortex_a15/ac6/src/tx_thread_interrupt_control.S index 50a0aa8f..4ca3cb3b 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_interrupt_control.S +++ b/ports/cortex_a15/ac6/src/tx_thread_interrupt_control.S @@ -43,7 +43,7 @@ FIQ_MASK = 0x040 /* FUNCTION RELEASE */ /* */ /* _tx_thread_interrupt_control ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -79,9 +79,9 @@ FIQ_MASK = 0x040 /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ #if defined(THUMB_MODE) diff --git a/ports/cortex_a15/ac6/src/tx_thread_interrupt_disable.S b/ports/cortex_a15/ac6/src/tx_thread_interrupt_disable.S index 233c5196..3e7f89f9 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_interrupt_disable.S +++ b/ports/cortex_a15/ac6/src/tx_thread_interrupt_disable.S @@ -37,7 +37,7 @@ /* FUNCTION RELEASE */ /* */ /* _tx_thread_interrupt_disable ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -72,9 +72,9 @@ /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ #if defined(THUMB_MODE) diff --git a/ports/cortex_a15/ac6/src/tx_thread_interrupt_restore.S b/ports/cortex_a15/ac6/src/tx_thread_interrupt_restore.S index e980aa47..59d44b2f 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_interrupt_restore.S +++ b/ports/cortex_a15/ac6/src/tx_thread_interrupt_restore.S @@ -42,7 +42,7 @@ FIQ_MASK = 0x040 /* FUNCTION RELEASE */ /* */ /* _tx_thread_interrupt_restore ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -78,9 +78,9 @@ FIQ_MASK = 0x040 /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ #if defined(THUMB_MODE) diff --git a/ports/cortex_a15/ac6/src/tx_thread_irq_nesting_end.S b/ports/cortex_a15/ac6/src/tx_thread_irq_nesting_end.S index a844e608..1ef355e1 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_irq_nesting_end.S +++ b/ports/cortex_a15/ac6/src/tx_thread_irq_nesting_end.S @@ -45,7 +45,7 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits /* FUNCTION RELEASE */ /* */ /* _tx_thread_irq_nesting_end ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -90,9 +90,9 @@ IRQ_MODE_BITS = 0x12 // IRQ mode bits /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ #if defined(THUMB_MODE) diff --git a/ports/cortex_a15/ac6/src/tx_thread_irq_nesting_start.S b/ports/cortex_a15/ac6/src/tx_thread_irq_nesting_start.S index e79e1802..a5287db1 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_irq_nesting_start.S +++ b/ports/cortex_a15/ac6/src/tx_thread_irq_nesting_start.S @@ -41,7 +41,7 @@ SYS_MODE_BITS = 0x1F // System mode bits /* FUNCTION RELEASE */ /* */ /* _tx_thread_irq_nesting_start ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -83,9 +83,9 @@ SYS_MODE_BITS = 0x1F // System mode bits /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ #if defined(THUMB_MODE) diff --git a/ports/cortex_a15/ac6/src/tx_thread_schedule.S b/ports/cortex_a15/ac6/src/tx_thread_schedule.S index 33eba1c3..2d7f18bd 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_schedule.S +++ b/ports/cortex_a15/ac6/src/tx_thread_schedule.S @@ -45,7 +45,7 @@ /* FUNCTION RELEASE */ /* */ /* _tx_thread_schedule ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -87,9 +87,9 @@ /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ #if defined(THUMB_MODE) diff --git a/ports/cortex_a15/ac6/src/tx_thread_stack_build.S b/ports/cortex_a15/ac6/src/tx_thread_stack_build.S index 8401cd61..87ad6af4 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_stack_build.S +++ b/ports/cortex_a15/ac6/src/tx_thread_stack_build.S @@ -47,7 +47,7 @@ CPSR_MASK = 0xBF // Mask initial CPSR, T, IRQ int /* FUNCTION RELEASE */ /* */ /* _tx_thread_stack_build ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -85,9 +85,9 @@ CPSR_MASK = 0xBF // Mask initial CPSR, T, IRQ int /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ #if defined(THUMB_MODE) diff --git a/ports/cortex_a15/ac6/src/tx_thread_system_return.S b/ports/cortex_a15/ac6/src/tx_thread_system_return.S index d17de10d..f68162f0 100644 --- a/ports/cortex_a15/ac6/src/tx_thread_system_return.S +++ b/ports/cortex_a15/ac6/src/tx_thread_system_return.S @@ -41,7 +41,7 @@ /* FUNCTION RELEASE */ /* */ /* _tx_thread_system_return ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -82,9 +82,9 @@ /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ #if defined(THUMB_MODE) diff --git a/ports/cortex_a15/ac6/src/tx_timer_interrupt.S b/ports/cortex_a15/ac6/src/tx_timer_interrupt.S index b4745f27..4b765d59 100644 --- a/ports/cortex_a15/ac6/src/tx_timer_interrupt.S +++ b/ports/cortex_a15/ac6/src/tx_timer_interrupt.S @@ -48,7 +48,7 @@ /* FUNCTION RELEASE */ /* */ /* _tx_timer_interrupt ARMv7-A */ -/* 6.x */ +/* 6.4.0 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -88,9 +88,9 @@ /* 10-31-2023 Tiejun Zhou Modified comment(s), added */ /* #include tx_user.h, */ /* resulting in version 6.3.0 */ -/* xx-xx-xxxx Yajun Xia Modified comment(s), */ +/* 12-31-2023 Yajun Xia Modified comment(s), */ /* Added thumb mode support, */ -/* resulting in version 6.x */ +/* resulting in version 6.4.0 */ /* */ /**************************************************************************/ #if defined(THUMB_MODE) |
