diff --git a/common/inc/tx_api.h b/common/inc/tx_api.h index 99c33a0f..dbf0d346 100644 --- a/common/inc/tx_api.h +++ b/common/inc/tx_api.h @@ -25,7 +25,7 @@ /* APPLICATION INTERFACE DEFINITION RELEASE */ /* */ /* tx_api.h PORTABLE C */ -/* 6.4.0 */ +/* 6.4.1 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -103,6 +103,9 @@ /* 12-31-2023 Tiejun Zhou Modified comment(s), */ /* update version number, */ /* resulting in version 6.4.0 */ +/* 03-01-2024 Tiejun Zhou Modified comment(s), */ +/* update version number, */ +/* resulting in version 6.4.1 */ /* */ /**************************************************************************/ @@ -142,7 +145,7 @@ extern "C" { #define AZURE_RTOS_THREADX #define THREADX_MAJOR_VERSION 6 #define THREADX_MINOR_VERSION 4 -#define THREADX_PATCH_VERSION 0 +#define THREADX_PATCH_VERSION 1 /* Define the following symbol for backward compatibility */ #define EL_PRODUCT_THREADX diff --git a/common_smp/inc/tx_api.h b/common_smp/inc/tx_api.h index c1e73bf2..f18a3f20 100644 --- a/common_smp/inc/tx_api.h +++ b/common_smp/inc/tx_api.h @@ -25,7 +25,7 @@ /* APPLICATION INTERFACE DEFINITION RELEASE */ /* */ /* tx_api.h PORTABLE SMP */ -/* 6.4.0 */ +/* 6.4.1 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ @@ -91,6 +91,9 @@ /* 12-31-2023 Tiejun Zhou Modified comment(s), */ /* update version number, */ /* resulting in version 6.4.0 */ +/* 03-01-2024 Tiejun Zhou Modified comment(s), */ +/* update version number, */ +/* resulting in version 6.4.1 */ /* */ /**************************************************************************/ @@ -143,7 +146,7 @@ extern "C" { #define AZURE_RTOS_THREADX #define THREADX_MAJOR_VERSION 6 #define THREADX_MINOR_VERSION 4 -#define THREADX_PATCH_VERSION 0 +#define THREADX_PATCH_VERSION 1 /* Define the following symbol for backward compatibility */ #define EL_PRODUCT_THREADX diff --git a/docs/revision_history.txt b/docs/revision_history.txt new file mode 100644 index 00000000..4b428a23 --- /dev/null +++ b/docs/revision_history.txt @@ -0,0 +1,1553 @@ + ThreadX + +For version 6 and higher, please refer to the release notes on GitHub at https://github.com/eclipse-threadx/threadx/releases. +Below is the revision history for 5.x. + +1. ThreadX: + +02-01-2019 ThreadX generic code version 5.9. This release includes the following modifications: + + tx_api.h Changed minor version constant, and added + a macro to disable warning of parameter + not used. + tx_event_flags_cleanup.c Added reset of suspension list processing + when event flag set is interrupted. + tx_event_flags_set.c Moved setup of notify callback so that it + is under interrupt protection and before any + preemption, and changed increment of reset + search flag to a simple set to true. + tx_event_flags_set_notify.c Removed the warning of parameter not used. + tx_mutex_get.c Changed logic to update the priority inheritance + priority level. + tx_mutex_priority_change.c Removed update of the priority inheritance + priority level. + tx_mutex_put.c Changed logic to properly update the priority + inheritance priority level. + tx_queue_send_notify.c Removed the warning of parameter not used. + tx_semaphore_put_notify.c Removed the warning of parameter not used. + tx_thread_entry_exit_notify.c Removed the warning of parameter not used. + tx_thread_suspend.c Refined error checking for self suspension to + ensure thread context. Modified to use system + state macro instead of direct variable access. + + +06-01-2017 ThreadX generic code version 5.8. This release includes the following + modifications: + + tx_api.h Changed minor version constant, added + suspension sequence to verify cleanup + is still necessary, made MISRA compatibility + changes, added alignment type for memory pools, + corrected compiler warnings in macro definitions, + added support for optional extensions. + tx_block_pool.h Added suspension sequence to verify cleanup + is still necessary, made MISRA compatibility + changes, and added macro for extending block + pool delete. + tx_byte_pool.h Added suspension sequence to verify cleanup + is still necessary, made MISRA compatibility + changes, added conditionals around the byte + pool configuration defines, and added macro + for extending the byte pool delete. + tx_event_flags.h Added suspension sequence to verify cleanup + is still necessary, made MISRA compatibility + changes, and added macro for extending event + flag group delete. + tx_initialize.h Made MISRA compatibility changes. + tx_mutex.h Added suspension sequence to verify cleanup is + still necessary, made MISRA compatibility + changes, and added macro for extending mutex + delete. + tx_queue.h Added suspension sequence to verify cleanup is + still necessary, made MISRA compatibility changes, + and added macro for extending queue delete. + tx_semaphore.h Added suspension sequence to verify cleanup + is still necessary, made MISRA compatibility + changes, and added macros for extending semaphore + delete. + tx_thread.h Made MISRA compatibility changes, added + default macro definition for setting + up timeout, added default macro definition for + setting up thread timeout pointer, and added + macros for extending the thread create, delete, + and reset processing. + tx_timer.h Made MISRA compatibility changes, added + macro for extending timer delete, and + added the global variable _tx_timer_expired_ptr + which is needed by timer info get. + tx_trace.h Made MISRA compatibility changes, and utilized + macros for system state and current thread + pointer retrieval. + tx_user.h Modified comment(s). + tx_block_allocate.c Added suspension sequence to verify cleanup is still + necessary, added protection against self suspension + with the preempt-disable flag set, changed logic to + set return pointer to NULL when no memory is available, + and modified code for MISRA compliance. + tx_block_pool_cleanup.c Added suspension sequence to verify cleanup is + still necessary, and modified code for MISRA + compliance. + tx_block_pool_create.c Modified code for MISRA compliance, added + use of alignment type for creating the block + pool, and modified code to properly handle case + where the supplied memory is too small for one block. + tx_block_pool_delete.c Added macro for port specific post processing. + tx_block_release.c Modified code for MISRA compliance. + tx_byte_allocate.c Added suspension sequence to verify cleanup is still + necessary, added protection against self suspension + with the preempt-disable flag set, added processing + extension, changed logic to set return pointer to NULL + when no memory is available, and added use of alignment + type for allocating from byte pool. + tx_byte_pool_cleanup.c Added suspension sequence to verify cleanup is still + necessary, and modified code for MISRA compliance. + tx_byte_pool_create.c Modified code for MISRA compliance, and added + use of alignment type for creating byte pool. + tx_byte_pool_delete.c Added macro for port specific post processing. + tx_byte_pool_search.c Modified code for MISRA compliance, added + use of alignment type for searching byte pool, + and modified logic to ensure the integrity of the + search pointer. + tx_byte_release.c Added processing extension, modified code for MISRA + compliance, and added use of alignment type for + releasing memory to byte pool. + tx_event_flags_cleanup.c Added suspension sequence to verify cleanup is still + necessary, and modified code for MISRA compliance. + tx_event_flags_delete.c Added macro for port specific post processing. + tx_event_flags_get.c Added suspension sequence to verify cleanup is still + necessary, and added protection against self + suspension with the preempt-disable flag set. + tx_event_flags_set.c Removed unnecessary code, and modified code + for MISRA compliance. + tx_initialize_kernel_enter.c Added processing extension, and modified code + for MISRA compliance. + tx_mutex_cleanup.c Added suspension sequence to verify cleanup is + still necessary, and modified code for MISRA + compliance. + tx_mutex_delete.c Added macro for port specific post processing. + tx_mutex_get.c Added suspension sequence to verify cleanup is still + necessary, and added protection against self + suspension with the preempt-disable flag set. + tx_mutex_prioritize.c Modified code for MISRA compliance. + tx_mutex_priority_change.c Added processing extension. + tx_mutex_put.c Removed unnecessary code, and added processing + extension. + tx_queue_cleanup.c Added suspension sequence to verify cleanup is + still necessary, and modified code for MISRA + compliance. + tx_queue_create.c Modified code for MISRA compliance. + tx_queue_delete.c Added macro for port specific post processing. + tx_queue_front_send.c Added suspension sequence to verify cleanup is + still necessary, added protection against self + suspension with the preempt-disable flag set, + and modified code for MISRA compliance. + tx_queue_receive.c Added suspension sequence to verify cleanup is + still necessary, added protection against self + suspension with the preempt-disable flag set, + and modified code for MISRA compliance. + tx_queue_send.c Added suspension sequence to verify cleanup is + still necessary, added protection against self + suspension with the preempt-disable flag set, + and modified code for MISRA compliance. + tx_semaphore_cleanup.c Added suspension sequence to verify cleanup is + still necessary, and modified code for MISRA + compliance. + tx_semaphore_delete.c Added macro for port specific post processing. + tx_semaphore_get.c Added suspension sequence to verify cleanup is + still necessary, and added protection against + self suspension with the preempt-disable flag set. + tx_thread_create.c Modified code for MISRA compliance, added + optional internal thread extension macro, + added macro for setting up the thread timeout, and + corrected problem restoring preemption-threshold + during initialization. + tx_thread_delete.c Added macro for port specific post processing. + tx_thread_initialize.c Modified code for MISRA compliance. + tx_thread_reset.c Removed extraneous TX_RESTORE, and added macro for + port specific processing. + tx_thread_resume.c Corrected problem restoring preemption-threshold + during initialization. + tx_thread_sleep.c Added protection against self suspension with the + preempt-disable flag set. + tx_thread_stack_analyze.c Added processing extension, and modified code for + MISRA compliance. + tx_thread_suspend.c Added protection against self suspension with the + preempt-disable flag set, and added TX_DISABLE to + match TX_RESTORE before returning. + tx_thread_system_resume.c Changed logic to ensure deactivation is called with + interrupt protection. + tx_thread_system_suspend.c Ensured that time-slice is properly reset in + non-interruptible code path, changed logic to perform + activation with protection in force, and corrected + problem setting up the trace information 4 field. + tx_thread_terminate.c Added suspension sequence to verify cleanup is still + necessary, changed logic to ensure no mutexes are added + to this thread after the check for owned mutexes, and + changed logic to ensure deactivation is called with + interrupt protection. + tx_thread_timeout.c Added suspension sequence to verify cleanup is still + necessary, and added macro for setting up the thread + pointer. + tx_thread_wait_abort.c Added suspension sequence to verify cleanup is still + necessary. + tx_timer_activate.c Changed logic to perform activation with protection + in force. + tx_timer_create.c Kept protection over timer activation. + tx_timer_deactivate.c Modified code for MISRA compliance, added + logic for accurate remaining time calculation. + tx_timer_delete.c Added macro for port specific post processing, and + changed logic to ensure deactivation is called with + interrupt protection. + tx_timer_expiration_process.c Modified code for MISRA compliance, ensure timer is + not accessed after timeout unless + reactivation is necessary, set pointer to indicate + timer being processed, and perform reactivation with + protection. + tx_timer_info_get.c Added logic for accurate remaining time calculation. + tx_timer_initialize.c Modified code for MISRA compliance, added + initialization for timer expired pointer, and + added check for TX_NO_TIMER option. + tx_timer_system_activate.c Modified code for MISRA compliance, removed + protection logic since protection is now + required by the caller. + tx_timer_system_deactivate.c Removed protection logic since protection is now + required by the caller. + tx_timer_thread_entry.c Modified code for MISRA compliance, ensure timer + is not accessed after timeout unless + reactivation is necessary, set pointer to indicate + timer being processed, and perform reactivation with + protection. + tx_trace_enable.c Added initial running events to ensure buffer is not + empty for TraceX, and modified code for MISRA + compliance. + tx_trace_object_register.c Modified code for MISRA compliance. + tx_trace_object_unregister.c Modified code for MISRA compliance. + txe_block_release.c Modified code for MISRA compliance. + txe_thread_create.c Modified code for MISRA compliance. + + +05-01-2015 ThreadX generic code version 5.7. This release includes the following + modifications: + + tx_api.h Modified code for MISRA compliance, + modified minor version define, added + thread start macro for performing port + and/or user specified processing when + a thread starts, and added constant + TX_TIMER_TICKS_PER_SECOND for use by + other middleware components as a common + time reference. + tx_byte_pool_search.c Modified code for MISRA compliance, + added code to assert pool ownership + after protection is obtained to ensure + no changes to the pool or the pool + search pointer are made without ownership. + tx_byte_release.c Modified code for MISRA compliance, + added code to assert pool ownership + after protection is obtained to ensure + no changes to the pool or the pool + search pointer are made without ownership. + tx_mutex_cleanup.c Modified code for MISRA compliance, and + modified logic to use the thread's owned + mutex list for releasing mutexes. + tx_mutex_delete.c Modified code for MISRA compliance, + and modified logic to call _tx_mutex_put + if the mutex is owned. + tx_mutex_get.c Modified code for MISRA compliance, + and added logic to place non-priority + inheritance mutexes on the owned list. + tx_mutex_put.c Modified code for MISRA compliance, + modified logic to remove non-priority + inheritance mutex from owned mutex list, + and added logic to handle releasing a mutex + during initialization. + tx_thread_shell_entry.c Added thread start macro for performing port + and/or user specified processing when a + thread starts. + tx*.h Modified comment(s) and modified code for + MISRA compliance. + tx*.c Modified comment(s) and modified code for + MISRA compliance. + + +11-01-2012 ThreadX generic code version 5.6. This release includes the following + modifications: + + tx_api.h Modified minor version define. + tx_mutex.h Added new prototype. + tx_thread.h Added function pointer for releasing any owned mutexes + when thread completes or is terminated. + tx_timer.h Removed unused constants. + tx_trace.h Added conditional around Trace function prototypes. + tx_mutex_cleanup.c Added new internal function to release any mutexes + owned by a terminated or completed thread. + tx_mutex_create.c Setup thread mutex release function pointer. + tx_mutex_priority_change.c Removed unnecessary code, and added logic to place thread + at the front of the execution list at updated priority. + tx_mutex_put.c Added logic to allow mutex put to be called from another + thread for mutex cleanup, and adjusted priority restoration + search to start at user priority. + tx_thread_initialize.c Added initialization of thread mutex release function + pointer. + tx_thread_priority_change.c Added logic to place thread at the front of the execution list + at updated priority. + tx_thread_shell_entry.c Added logic to remove all mutexes owned by thread when it + completes. + tx_thread_terminate.c Added logic to remove all mutexes owned by thread when it is + terminated. + tx_timer_expiration_process.c Corrected problem with nested timer interrupts. + txe_mutex_get.c Allow timers to call this service. + txe_mutex_put.c Allow timers to call this service. + tx*.c Changed comments and copyright header. + tx*.h Changed comments and copyright header. + + +07-15-2011 ThreadX generic code version 5.5. This release includes the following + modifications: + + tx_api.h Added defines for major/minor version information, + and removed unused original threshold mutex structure + member. + tx_mutex.h Removed unnecessary parameter in in mutex priority change. + tx_thread.h Added interrupt protection to stack checking macro. + tx_trace.h Added variables for object registry optimizations. + tx_mutex_get.c Removed saving original threshold, and removed unnecessary + parameter to mutex priority change. + tx_mutex_priority_change.c Removed unused new threshold parameter, and added logic + to handle a lower or equal priority thread from + preempting an executing thread changing priority. + tx_mutex_put.c Removed saving original threshold, removed unnecessary + parameter to mutex priority change, and added logic to + check for necessary priority changes. + tx_thread_create.c Corrected problem with TX_THREAD_CREATE_EXTENSION + macro not being used if the thread is not auto started. + tx_thread_initialize.c Added bit for indicating execution profiling enabled + in _tx_build_options. + tx_thread_priority_change.c Added logic to handle a lower or equal priority thread + from preempting an executing thread changing priority. + tx_thread_reset.c Changed memset to TX_MEMSET so it can be redefined. + tx_thread_stack_analyze.c Added logic to check for thread validity before + updating highest stack pointer. + tx_thread_system_preempt_check.c Removed redundant conditional in stack checking. + tx_thread_system_resume.c Corrected problem with delayed suspension from an + interrupt during the middle of a thread suspending. + tx_thread_time_slice.c Removed redundant conditional in stack checking, and + moved stack checking to be called with interrupts enabled. + tx_trace_enable.c Added initialization for variables used for object + tx_trace_object_register.c Added optimization for adding registry entries. + tx_trace_object_unregister.c Added support for optimizing adding registry entries. + registry optimizations. + tx*.c Changed comments and copyright header. + tx*.h Changed comments and copyright header. + + +12-12-2009 ThreadX generic code version 5.4. This release includes the following + modifications: + + tx_api.h Changed the definition of TX_NULL to a pointer type, + added TX_MEMSET macro, modified priority-inheritance + struct members in TX_THREAD, changed user event + comments, added callback for tracking thread scheduling, + merged event logging and MULTI run-time error checking + support, changed type of all internal structure members + used for counting to UINT, and added safety critical + exception logic. + tx_byte_pool.h Removed unused constant TX_BYTE_BLOCK_ALLOC. + tx_thread.h Removed type conversion in lowest set bit macro, added + macro to get the system state, and removed redundant + prototype. + tx_timer.h Removed the unnecessary status return on system timer + activate/deactivate. + tx_trace.h Added defines for default source, and added logic to + insert the thread's preemption-threshold along with its + priority. + tx_block_allocate.c Removed compound conditionals, added explicit value checking, + added logic to explicitly check for valid pointer, adjusted + the trace enable conditional to include the trace insert + macro, changed some counting variables to type UINT, merged + event logging support, and added void pointer cast in pointer + type conversions. + tx_block_pool_cleanup.c Removed compound conditionals, changed some counting + variables to type UINT, and added logic to explicitly + check for valid pointer. + tx_block_pool_create.c Added explicit compare of blocks, removed pointer comparison, + changed memset to macro, eliminated created_count local + variable, changed some counting variables to type UINT, + merged event logging support, and added void pointer cast in + pointer type conversions. + tx_block_pool_delete.c Merged event logging support, eliminated created_count local + variable, and changed some counting variables to type UINT. + tx_block_pool_info_get.c Casted UINT counting values to ULONG where necessary, merged + event logging support, and added logic to explicitly check + for valid pointer. + tx_block_pool_performance_info_get.c Removed compound conditionals, added logic to explicitly + check for valid pointer, merged event logging support, and + added code to ensure that input parameters are accessed in + non-enabled case (default). + tx_block_pool_performance_system_info_get.c Added logic to explicitly check for valid pointer, merged + event logging support, and added code to ensure that input + parameters are accessed in non-enabled case (default). + tx_block_pool_prioritize.c Merged event logging support, and changed some counting + variables to type UINT. + tx_block_release.c Added logic to explicitly check for valid pointer, changed + some counting variables to type UINT, merged event logging + support, and added void pointer cast in pointer type + conversions. + tx_byte_allocate.c Removed compound conditionals, added explicit value checking, + explicit check for wait option, changed some counting + variables to type UINT, merged event logging support, and + added logic to explicitly check for valid pointer. + tx_byte_pool_cleanup.c Removed compound conditionals, changed some counting + variables to type UINT, and added logic to explicitly check + for valid pointer. + tx_byte_pool_create.c Removed unused constant TX_BYTE_BLOCK_ALLOC, added void + pointer cast in pointer type conversions, changed memset to + macro, eliminated created_count local variable, merged event + logging support, and added parentheses in calculation of + per-block overhead. + tx_byte_pool_delete.c Merged event logging support, eliminated created_count local + variable, and changed some counting variables to type UINT. + tx_byte_pool_info_get.c Casted UINT counting values to ULONG where necessary, + merged event logging support, and added logic to explicitly + check for valid pointer. + tx_byte_pool_performance_info_get.c Removed compound conditionals, added logic to explicitly + check for valid pointer, merged event logging support, and + added code to ensure that input parameters are accessed in + non-enabled case (default). + tx_byte_pool_performance_system_info_get.c Added logic to explicitly check for valid pointer, merged + event logging support, and added code to ensure that input + parameters are accessed in non-enabled case (default). + tx_byte_pool_prioritize.c Merged event logging support, and changed some counting + variables to type UINT. + tx_byte_pool_search.c Added explicit checks for examined blocks and available + bytes, added void pointer cast in pointer type conversions, + changed some counting variables to type UINT, and added + parentheses in calculation of available bytes. + tx_byte_release.c Added logic to explicitly check for valid pointer, added + void pointer cast in pointer type conversions, changed + some counting variables to type UINT, merged event logging + support, and added parentheses in calculation of available + bytes. + tx_event_flags_cleanup.c Removed compound conditionals, added explicit check for + suspend count, changed some counting variables to type UINT, + and added logic to explicitly check for valid pointer. + tx_event_flags_create.c Changed memset to macro, merged event logging support, and + eliminated created_count local variable. + tx_event_flags_delete.c Merged event logging support, eliminated created_count local + variable, and changed some counting variables to type UINT. + tx_event_flags_get.c Removed compound conditionals, changed some counting + variables to type UINT, merged event logging support, and + added explicit value checks. + tx_event_flags_info_get.c Casted UINT counting values to ULONG where necessary, merged + event logging support, and added logic to explicitly check + for valid pointer. + tx_event_flags_performance_info_get.c Removed compound conditionals, added logic to explicitly + check for valid pointer, merged event logging support, and + added code to ensure that input parameters are accessed in + non-enabled case (default). + tx_event_flags_performance_system_info_get.c Added logic to explicitly check for valid pointer, merged + event logging support, and added code to ensure that input + parameters are accessed in non-enabled case (default). + tx_event_flags_set.c Removed compound conditionals, added explicit value checks, + added logic to explicitly check for valid pointer, fixed + logic in consuming events, changed some counting variables + to type UINT, merged event logging support, and added check + for a NULL last satisfied pointer. + tx_event_flags_set_notify.c Merged event logging support. + tx_initialize_high_level.c Merged event logging support. + tx_initialize_kernel_enter.c Added macro for defining safety critical exception handler + if necessary, and added safety critical exception if the + call to the _tx_thread_schedule function returns. + tx_mutex_cleanup.c Removed compound conditionals, changed some counting + variables to type UINT, and added logic to explicitly + check for valid pointer. + tx_mutex_create.c Changed memset to macro, merged event logging support, and + eliminated created_count local variable. + tx_mutex_delete.c Removed compound conditionals, added explicit value checking, + changed some counting variables to type UINT, merged event + logging support, eliminated created_count local variable, and + added logic to explicitly check for valid pointer. + tx_mutex_get.c Removed compound conditionals, added explicit value checking, + changed priority-inheritance logic to distinguish user + priority changes from mutex priority-inheritance, changed + some counting variables to type UINT, merged event logging + support, and added logic to explicitly check for valid + pointer. + tx_mutex_info_get.c Casted UINT counting values to ULONG where necessary, merged + event logging support, and added logic to explicitly check for + valid pointer. + tx_mutex_performance_info_get.c Removed compound conditionals, added logic to explicitly check + for valid pointer, merged event logging support, and added + code to ensure that input parameters are accessed in + non-enabled case (default). + tx_mutex_performance_system_info_get.c Added logic to explicitly check for valid pointer, merged + event logging support, and added code to ensure that input + parameters are accessed in non-enabled case (default). + tx_mutex_prioritize.c Merged event logging support, and changed some counting + variables to type UINT. + tx_mutex_priority_change.c Changed priority-inheritance logic to distinguish user + priority changes from mutex priority-inheritance. + tx_mutex_put.c Removed compound conditionals, added explicit value checking, + added logic to explicitly check for valid pointer, changed + priority-inheritance logic to distinguish user priority + changes from mutex priority-inheritance, changed some + counting variables to type UINT, merged event logging support, + and added return value check for calls to prioritize. + tx_queue_cleanup.c Removed compound conditionals, added explicit value checking, + changed some counting variables to type UINT, and added logic + to explicitly check for valid pointer. + tx_queue_create.c Changed memset to macro, casted ULONG counting values to UINT + where necessary, merged event logging support, and eliminated + created_count local variable. + tx_queue_delete.c Merged event logging support, eliminated created_count local + variable, and changed some counting variables to type UINT. + tx_queue_flush.c Removed compound conditionals, added explicit value checking, + changed some counting variables to type UINT, merged event + logging support, and added logic to check for null thread + pointer. + tx_queue_front_send.c Removed compound conditionals, added explicit value checking, + added logic to explicitly check for valid pointer, changed + some counting variables to type UINT, merged event logging + support, and removed unnecessary casting. + tx_queue_info_get.c Merged event logging support, and casted UINT counting + values to ULONG where necessary. + tx_queue_performance_info_get.c Removed compound conditionals, added logic to explicitly + check for valid pointer, merged event logging support, and + added code to ensure that input parameters are accessed in + non-enabled case (default). + tx_queue_performance_system_info_get.c Added logic to explicitly check for valid pointer, merged + event logging support, and added code to ensure that input + parameters are accessed in non-enabled case (default). + tx_queue_prioritize.c Merged event logging support, and changed some counting + variables to type UINT. + tx_queue_receive.c Removed compound conditionals, added explicit value + checking, added logic to explicitly check for valid pointer, + added null check for thread pointer, changed pointer + comparison to check for equal pointers, changed some + counting variables to type UINT, merged event logging + support, and removed unnecessary casting. + tx_queue_send.c Removed compound conditionals, added explicit value + checking, added logic to explicitly check for valid pointer, + changed pointer comparison to check for equal pointers, + changed some counting variables to type UINT, merged event + logging support, and removed unnecessary casting. + tx_queue_send_notify.c Merged event logging support. + tx_semaphore_ceiling_put.c Changed some counting variables to type UINT, merged event + logging support, and added logic to explicitly check for + valid pointer. + tx_semaphore_cleanup.c Removed compound conditionals, changed some counting + variables to type UINT, and added logic to explicitly check + for valid pointer. + tx_semaphore_create.c Changed memset to macro, merged event logging support, and + eliminated created_count local variable. + tx_semaphore_delete.c Merged event logging support, eliminated created_count + local variable, and changed some counting variables to + type UINT. + tx_semaphore_get.c Changed some counting variables to type UINT, merged event + logging support, and added explicit value checking. + tx_semaphore_info_get.c Casted UINT counting values to ULONG where necessary, merged + event logging support, and added logic to explicitly check + for valid pointer. + tx_semaphore_performance_info_get.c Removed compound conditionals, added logic to explicitly + check for valid pointer, merged event logging support, and + added code to ensure that input parameters are accessed in + non-enabled case (default). + tx_semaphore_performance_system_info_get.c Added logic to explicitly check for valid pointer, merged + event logging support, and added code to ensure that input + parameters are accessed in non-enabled case (default). + tx_semaphore_prioritize.c Merged event logging support, and changed some counting + variables to type UINT. + tx_semaphore_put.c Changed some counting variables to type UINT, merged event + logging support, and added logic to explicitly check for + valid pointer. + tx_semaphore_put_notify.c Merged event logging support. + tx_thread_create.c Added explicit value checking, changed logic to use a macro + to get the system state, added code to initialize + priority-inheritance info, changed memset to macro, + eliminated created_count local variable, merged event + logging support, and added logic to explicitly check for + valid pointer. + tx_thread_delete.c Merged event logging support, removed compound conditionals, + and eliminated created_count local variable. + tx_thread_entry_exit_notify.c Merged event logging support. + tx_thread_identify.c Merged event logging support. + tx_thread_info_get.c Merged event logging support, added logic to return the + user-specified priority and preemption-threshold, and added + logic to explicitly check for valid pointer. + tx_thread_initialize.c Changed memset to macro, and added logic to omit the port + specific build options if it is 0. + tx_thread_performance_info_get.c Removed compound conditionals, added logic to explicitly + check for valid pointer, merged event logging support, and + added code to ensure that input parameters are accessed in + non-enabled case (default). + tx_thread_performance_system_info_get.c Added logic to explicitly check for valid pointer, merged + event logging support, and added code to ensure that + input parameters are accessed in non-enabled case (default). + tx_thread_preemption_change.c Changed logic to use a macro to get the system state, + changed logic to ensure the highest preemption-threshold, + merged event logging support, and removed compound + conditionals. + tx_thread_priority_change.c Changed priority logic to account for priority-inheritance, + and merged event logging support. + tx_thread_relinquish.c Merged event logging support, and added logic to reset the + time-slice. + tx_thread_reset.c Merged event logging support, and removed compound + conditionals. + tx_thread_resume.c Removed compound conditionals, added logic to explicitly + check for valid pointer, changed logic to use a macro to + get the system state, merged event logging support, and + adjusted logic to check for system state or preempt disable. + tx_thread_shell_entry.c Added logic to explicitly check for valid pointer, and + safety critical exception if control returns after the + thread enters the completed state. + tx_thread_sleep.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the system + state, merged event logging support, and added logic to + explicitly check for valid pointer. + tx_thread_stack_analyze.c Removed compound conditionals, added logic to explicitly + check for valid pointer, and added ULONG cast. + tx_thread_stack_error_handler.c Added logic to explicitly check for valid pointer, and + added code to ensure that the input parameter is accessed + in non-enabled case (default). + tx_thread_stack_error_notify.c Merged event logging support, and added code to ensure + that the input parameter is accessed in non-enabled + case (default). + tx_thread_suspend.c Removed compound conditionals, added explicit value + checking, added logic to explicitly check for valid + pointer, added logic to reset the time-slice, changed + logic to use a macro to get the system state, merged event + logging support, and adjusted logic to check for system + state or preempt disable. + tx_thread_system_preempt_check.c Removed compound conditionals, added logic to explicitly + check for valid pointer, changed logic to use a macro to + get the system state, and adjusted logic to check for + system state or preempt disable. + tx_thread_system_resume.c Removed compound conditionals, added logic to explicitly + check for valid pointer, changed logic to use a macro to + get the system state, merged event logging support, and + adjusted logic to check for system state or preempt + disable. + tx_thread_system_suspend.c Removed compound conditionals, added explicit value + checking, added logic to explicitly check for valid + pointer, added logic to reset the time-slice, changed + logic to use a macro to get the system state, merged + event logging support, and adjusted logic to check for + system state or preempt disable. + tx_thread_terminate.c Removed compound conditionals, merged event logging + support, and added logic to explicitly check for valid + pointer. + tx_thread_time_slice.c Removed compound conditionals, changed logic to use a + macro to get the system state, and added logic to + explicitly check for valid pointer. + tx_thread_time_slice_change.c Merged event logging support. + tx_thread_timeout.c Added logic to explicitly check for valid pointer. + tx_thread_wait_abort.c Merged event logging support, and added logic to + explicitly check for valid pointer. + tx_time_get.c Merged event logging support. + tx_time_set.c Merged event logging support. + tx_timer_activate.c Removed compound conditionals, added logic to + explicitly check for valid ticks, merged event + logging support, and added logic to explicitly + check for valid pointer. + tx_timer_change.c Merged event logging support, and added logic to + explicitly check for valid pointer. + tx_timer_create.c Changed memset to macro, eliminated created_count local + variable, merged event logging support, and added + explicit value check. + tx_timer_deactivate.c Removed compound conditionals, added logic to explicitly + check for valid pointer, merged event logging support, + and added ULONG casting. + tx_timer_delete.c Merged event logging support, eliminated created_count + local variable, and added logic to explicitly check + for valid pointer. + tx_timer_expiration_process.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + tx_timer_info_get.c Removed compound conditionals, added logic to explicitly + check for valid pointer, merged event logging support, + and added ULONG casting. + tx_timer_initialize.c Corrected memory initialize value to memset, changed + memset to macro, and added safety critical error + exception. + tx_timer_performance_info_get.c Removed compound conditionals, added logic to + explicitly check for valid pointer, merged event + logging support, and added code to ensure that input + parameters are accessed in non-enabled case (default). + tx_timer_performance_system_info_get.c Added logic to explicitly check for valid pointer, + merged event logging support, and added code to ensure + that input parameters are accessed in non-enabled + case (default). + tx_timer_system_activate.c Removed compound conditionals, added explicit value + checking, and removed unnecessary status return. + tx_timer_system_deactivate.c Added logic to explicitly check for valid pointer, + and removed unnecessary status return. + tx_timer_thread_entry.c Added logic to explicitly check for valid pointer, + added explicit check for expired flag, moved + while-forever to top of the loop, and added safety + critical exception if control returns after the + thread's while-forever processing loop. + tx_trace_buffer_full_notify.c Added logic to access parameter. + tx_trace_enable.c Added logic to explicitly check for valid pointer, and + added code to ensure that input parameters are accessed + in non-enabled case (default). + tx_trace_event_filter.c Added logic to access parameter. + tx_trace_event_unfilter.c Added logic to access parameter. + tx_trace_isr_enter_insert.c Added logic to access parameter, and changed logic to + use a macro to get system state. + tx_trace_isr_exit_insert.c Added logic to access parameter, and changed logic to + use a macro to get system state. + tx_trace_object_register.c Added explicit value check, added logic to access + parameter, and added logic to store thread's priority + in the reserved bytes. + tx_trace_object_unregister.c Added logic to access parameter. + tx_trace_user_event_insert.c Added logic to access parameter. + txe_block_allocate.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_block_pool_create.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_block_pool_delete.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_block_pool_info_get.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_block_pool_prioritize.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_block_release.c Removed compound conditionals, added logic to + explicitly check for valid pointer, and added void + pointer cast in pointer type conversions. + txe_byte_allocate.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_byte_pool_create.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_byte_pool_delete.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check + for valid pointer. + txe_byte_pool_info_get.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_byte_pool_prioritize.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_byte_release.c Added explicit value checking, changed logic to use + a macro to get the system state, and added logic to + explicitly check for valid pointer. + txe_event_flags_create.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check + for valid pointer. + txe_event_flags_delete.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check + for valid pointer. + txe_event_flags_get.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check + for valid pointer. + txe_event_flags_info_get.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_event_flags_set.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_event_flags_set_notify.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_mutex_create.c Removed compound conditionals, changed logic to use + a macro to get the system state, and added logic to + explicitly check for valid pointer. + txe_mutex_delete.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check + for valid pointer. + txe_mutex_get.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_mutex_info_get.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_mutex_prioritize.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_mutex_put.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check + for valid pointer. + txe_queue_create.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check + for valid pointer. + txe_queue_delete.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_queue_flush.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_queue_front_send.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_queue_info_get.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_queue_prioritize.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_queue_receive.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_queue_send.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_queue_send_notify.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_semaphore_ceiling_put.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_semaphore_create.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_semaphore_delete.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_semaphore_get.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_semaphore_info_get.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_semaphore_prioritize.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_semaphore_put.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_semaphore_put_notify.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_thread_create.c Removed compound conditionals, added explicit value + checking, added logic to explicitly check for valid + pointer, changed logic to use a macro to get the + system state, and added void pointer cast in pointer + type conversions. + txe_thread_delete.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_thread_entry_exit_notify.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_thread_info_get.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_thread_preemption_change.c Removed compound conditionals, added explicit value + checking, changed logic to examine user specified + priority, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_thread_priority_change.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_thread_relinquish.c Removed compound conditionals, added logic to + explicitly compare the system state, changed logic to + use a macro to get the system state, and added logic + to explicitly check for valid pointer. + txe_thread_reset.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_thread_resume.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_thread_suspend.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_thread_terminate.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_thread_time_slice_change.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_thread_wait_abort.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_timer_activate.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_timer_change.c Removed compound conditionals, added explicit check + on the supplied initial ticks, changed logic to use + a macro to get the system state, and added logic to + explicitly check for valid pointer. + txe_timer_create.c Removed compound conditionals, added explicit value + checking, added explicit check for initial ticks, + changed logic to use a macro to get the system state, + and added logic to explicitly check for valid pointer. + txe_timer_deactivate.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + txe_timer_delete.c Removed compound conditionals, added explicit value + checking, changed logic to use a macro to get the + system state, and added logic to explicitly check for + valid pointer. + txe_timer_info_get.c Removed compound conditionals, and added logic to + explicitly check for valid pointer. + tx*.c Changed comments and copyright header. + tx*.h Changed comments and copyright header. + + +07-04-2009 ThreadX generic code version 5.3. This release includes the following + modifications: + + tx_api.h Changed the start of user trace events to 4096. + tx_thread_system_resume.c Fixed problem of not clearing a pending timer + registration when a thread suspension is interrupted. + tx_trace.h Removed FileX & NetX event IDs since they are defined + elsewhere, and corrected priority assignment in event + trace. + tx_trace_buffer_full_notify.c Added conditional so that the function is only compiled once. + tx_trace_enable.c Added trace include source define, and changed trace buffer + initialization so partial trace buffers are processed properly. + tx_trace_event_filter.c Added conditional so that the function is only compiled once. + tx_trace_event_unfilter.c Added conditional so that the function is only compiled once. + tx*.c Changed comments and copyright header. + tx*.h Changed comments and copyright header. + + +12-12-2008 ThreadX generic code version 5.2. This release includes the following + modifications: + + tx_api.h Added various trace constants. + tx_initialize.h Added new macro for defining port-specific data + and port-specific initialization processing. + tx_queue.h Added macro for copying queue message. + tx_thread.h Added new system resume and suspend function + prototypes, changed macro MOD32 to TX_MOD32_BIT_SET, + added TX_DIV32_BIT_SET macro, removed old lowest bit + set table, added new state change macro, added macro + to pickup current thread, added macro to clear the + current thread, added stack checking macro, and added + new macro for calculating the lowest bit set. + tx_trace.h Added new event definitions, changed types + to ensure the trace has universal format, + optimized event macro, and added filter + logic and new function prototypes. + tx_user.h Added new defines, and removed TX_USE_PRESET_DATA + since it is no longer required. + tx_block_allocate.c Added macro to get current thread, added filter + option to trace insert, added optional logic for + non-interruptible operation, and made several + optimizations. + tx_block_pool_cleanup.c Added logic to keep suspension list in order, + added optional logic for non-interruptible operation, + and made several optimizations. + tx_block_pool_create.c Added parameter to trace registry, added filter option + to trace insert, treat the zero blocks situation as an + error, and made several optimizations. + tx_block_pool_delete.c Added filter option to trace insert, added optional + logic for non-interruptible operation, and made several + optimizations. + tx_block_pool_info_get.c Added filter option to trace insert. + tx_block_pool_performance_info_get.c Added filter option to trace insert. + tx_block_pool_performance_system_info_get.c Added filter option to trace insert. + tx_block_pool_prioritize.c Added filter option to trace insert, and made several + optimizations. + tx_block_release.c Added filter option to trace insert, added optional + logic for non-interruptable operation, and made several + optimizations. + tx_byte_allocate.c Added macro to get current thread, added filter option + to trace insert, added optional logic for non-interruptable + operation, and made several optimizations. + tx_byte_pool_cleanup.c Added logic to keep suspension list in order, added + optional logic for non-interruptable operation, and made + several optimizations. + tx_byte_pool_create.c Added filter option to trace insert, and made several + optimizations. + tx_byte_pool_delete.c Added filter option to trace insert, added optional logic + for non-interruptable operation, and made several + optimizations. + tx_byte_pool_info_get.c Added filter option to trace insert. + tx_byte_pool_performance_info_get.c Added filter option to trace insert. + tx_byte_pool_performance_system_info_get.c Added filter option to trace insert. + tx_byte_pool_prioritize.c Added filter option to trace insert, and made several + optimizations. + tx_byte_pool_search.c Added macro to get current thread, and made several + optimizations. + tx_byte_release.c Added macro to get current thread, added filter option + to trace insert, added optional logic for + non-interruptable operation, and made several + optimizations. + tx_event_flags_cleanup.c Added logic to handle wait aborts on event flag + suspension from ISRs, added logic to keep suspension + list in order, added optional logic for non-interruptable + operation, and made several optimizations. + tx_event_flags_create.c Added filter option to trace insert, and made several + optimizations. + tx_event_flags_delete.c Added filter option to trace insert, added optional + logic for non-interruptable operation, and made + several optimizations. + tx_event_flags_get.c Added macro to get current thread, added filter + option to trace insert, added optional logic for + non-interruptable operation, and made several + optimizations. + tx_event_flags_info_get.c Added filter option to trace insert. + tx_event_flags_performance_info_get.c Added filter option to trace insert. + tx_event_flags_performance_system_info_get.c Added filter option to trace insert. + tx_event_flags_set.c Added filter option to trace insert, added check for + threads whose suspension was aborted from an ISR + during the search for satisfied requests, added + optional logic for non-interruptable operation, + and made several optimizations. + tx_event_flags_set_notify.c Added filter option to trace insert. + tx_initialize_kernel_enter.c Added macros for port-specific initialization use. + tx_initialize_kernel_setup.c Added macros for port-specific initialization use. + tx_mutex_cleanup.c Added logic to keep suspension list in order, added + optional logic for non-interruptable operation, + and made several optimizations. + tx_mutex_create.c Added filter option to trace insert, and made + several optimizations. + tx_mutex_delete.c Added filter option to trace insert, added optional + logic for non-interruptable operation, and made + several optimizations. + tx_mutex_get.c Added macro to get current thread, added filter + option to trace insert, added optional logic for + non-interruptable operation, and made several + optimizations. + tx_mutex_info_get.c Added filter option to trace insert. + tx_mutex_performance_info_get.c Added filter option to trace insert. + tx_mutex_performance_system_info_get.c Added filter option to trace insert. + tx_mutex_prioritize.c Added filter option to trace insert, and made + several optimizations. + tx_mutex_priority_change.c Added optional logic for non-interruptable operation, + and made several optimizations. + tx_mutex_put.c Added macro to get current thread, optimized the + normal no priority-inheritance path, added filter + option to trace insert, added optional logic for + non-interruptable operation, and made several other + optimizations. + tx_queue_cleanup.c Added logic to keep suspension list in order, added + optional logic for non-interruptable operation, + and made several optimizations. + tx_queue_create.c Added parameter to trace registry, added filter + option to trace insert, and made several + optimizations. + tx_queue_delete.c Added filter option to trace insert, added optional + logic for non-interruptable operation, and made + several optimizations. + tx_queue_flush.c Added optional logic for non-interruptable operation, + and added filter option to trace insert. + tx_queue_front_send.c Added macro to get current thread, made several + optimizations, added filter option to trace insert, + added optional logic for non-interruptable + operation, and added macros for message copying. + tx_queue_info_get.c Added filter option to trace insert. + tx_queue_performance_info_get.c Added filter option to trace insert. + tx_queue_performance_system_info_get.c Added filter option to trace insert. + tx_queue_prioritize.c Added filter option to trace insert, and made + several optimizations. + tx_queue_receive.c Added macro to get current thread, made several + optimizations, corrected the performance + information names, added filter option to trace + insert, added optional logic for non-interruptable + operation, and added macros for message copying. + tx_queue_send.c Added macro to get current thread, made several + optimizations, added filter option to trace + insert, added optional logic for non-interruptable + operation, and added macros for message copying. + tx_queue_send_notify.c Added filter option to trace insert. + tx_semaphore_ceiling_put.c Added filter option to trace insert, added optional + logic for non-interruptable operation, and made + several optimizations. + tx_semaphore_cleanup.c Added logic to keep suspension list in order, added + optional logic for non-interruptable operation, + and made several optimizations. + tx_semaphore_create.c Added filter option to trace insert, and made + several optimizations. + tx_semaphore_delete.c Added filter option to trace insert, added optional + logic for non-interruptable operation, and made + several optimizations. + tx_semaphore_get.c Added macro to get current thread, added filter + option to trace insert, added optional logic for + non-interruptable operation, and made several + optimizations. + tx_semaphore_info_get.c Added filter option to trace insert. + tx_semaphore_performance_info_get.c Added filter option to trace insert. + tx_semaphore_performance_system_info_get.c Added filter option to trace insert. + tx_semaphore_prioritize.c Added filter option to trace insert, and made + several optimizations. + tx_semaphore_put.c Added filter option to trace insert, added optional + logic for non-interruptable operation, and made + several optimizations. + tx_semaphore_put_notify.c Added filter option to trace insert. + tx_thread_create.c Added filter option to trace insert, moved extension + processing to interrupt enabled area, added logic + to align stack pointers for stack checking, added + optional logic for non-interruptable operation, + and made several optimizations. + tx_thread_delete.c Added filter option to trace insert, moved extension + processing to interrupt enabled area, and made + several optimizations. + tx_thread_entry_exit_notify.c Added filter option to trace insert. + tx_thread_identify.c Added filter option to trace insert, expanded interrupt + disable area, and added macro to get current thread. + tx_thread_info_get.c Added filter option to trace insert. + tx_thread_initialize.c Added macro to set current thread, added new bit + assignments for _tx_build_options, and removed logic + to setup the lowest bit set table since it is no + longer required. + tx_thread_performance_info_get.c Added filter option to trace insert. + tx_thread_performance_system_info_get.c Added filter option to trace insert. + tx_thread_preemption_change.c Added filter option to trace insert, changed MOD32 + macro to new TX_MOD32_BIT_SET macro, removed code + for interrupt preemption performance counter updates, + added logic to handle restoring preemption-threshold + values during priority inheritance, and added + TX_DIV32_BIT_SET macro. + tx_thread_priority_change.c Added filter option to trace insert, added optional + logic for non-interruptable operation, and made + several optimizations. + tx_thread_relinquish.c Added macro to get current thread, moved relinquish + trace event, added next thread parameter, added + filter option to trace insert, added stack check + macro, and removed unnecessary code. + tx_thread_reset.c Added filter option to trace insert, and added + macro to get current thread. + tx_thread_resume.c Added macro to get current thread, added state + change macro, added filter option to trace insert, + added optional logic for non-interruptable + operation, and added optional in-line thread + suspension logic. + tx_thread_shell_entry.c Added macro to get current thread, added state + change macro, cleared the timeout value to avoid + a timeout on a completed thread, moved extension + processing to interrupt enabled area, added + optional logic for non-interruptable operation, + and made several optimizations. + tx_thread_sleep.c Added filter option to trace insert, added + optional logic for non-interruptable operation, + and added macro to get current thread. + tx_thread_stack_analyze.c Made optimization. + tx_thread_stack_error_handler.c Removed spin loop. + tx_thread_stack_error_notify.c Added filter option to trace insert. + tx_thread_suspend.c Added macro to get current thread, added filter + option to trace insert, added state change macro, + added optional logic for non-interruptable + operation, and added optional in-line thread + suspension logic. + tx_thread_system_preempt_check.c Added macro to get current thread, added null next + thread check, added stack check macro, and optimized + flag processing. + tx_thread_system_resume.c Added macro to get current thread, added state + change macro, added optional logic for + non-interruptable operation, added filter option + to trace insert, added next thread to system + resume trace entry, changed MOD32 macro to new + TX_MOD32_BIT_SET macro, added TX_DIV32_BIT_SET + macro, added stack check macro, and optimized + code for typical path processing. + tx_thread_system_suspend.c Added macro to get current thread, added state + change macro, added filter option to trace + insert, added optional logic for non-interruptable + operation, changed MOD32 macro to new + TX_MOD32_BIT_SET macro, added TX_DIV32_BIT_SET + macro, optimized lowest set bit logic, added + stack check macro, and optimized code for typical + path processing. + tx_thread_terminate.c Added state change macro, added filter option + to trace insert, moved extension processing + to interrupt enabled area, added optional logic + for non-interruptable operation, and made + several optimizations. + tx_thread_time_slice.c Added macro to get current thread, added event + trace call, added filter option to trace insert, + added stack check macro, and added thread pointer + check in stack checking logic. + tx_thread_time_slice_change.c Added filter option to trace insert, and added + macro to get current thread. + tx_thread_timeout.c Added optional logic for non-interruptable + operation. + tx_thread_wait_abort.c Added optional logic for non-interruptable + operation, and added filter option to trace + insert. + tx_time_get.c Added filter option to trace insert. + tx_time_set.c Added filter option to trace insert. + tx_timer_activate.c Added filter option to trace insert. + tx_timer_change.c Added filter option to trace insert. + tx_timer_create.c Added filter option to trace insert, and + made several optimizations. + tx_timer_deactivate.c Added filter option to trace insert, and + made several optimizations. + tx_timer_delete.c Added filter option to trace insert, and + made several optimizations. + tx_timer_expiration.c Added optional logic for non-interruptable + operation, and made several optimizations. + tx_timer_info_get.c Added filter option to trace insert. + tx_timer_performance_info_get.c Added filter option to trace insert. + tx_timer_performance_system_info_get.c Added filter option to trace insert. + tx_timer_system_activate.c Made several optimizations. + tx_timer_system_deactivate.c Made several optimizations. + tx_timer_thread_entry.c Added optional logic for non-interruptable + operation, and made several optimizations. + tx_trace_buffer_full_notify.c Added new trace function. + tx_trace_enable.c Added logic to setup event filter, and + modified code to ensure universal trace + format. + tx_trace_event_filter.c Added new trace function. + tx_trace_event_unfilter.c Added new trace function. + tx_trace_interrupt_control.c Added filter option to trace insert. + tx_trace_isr_enter_insert.c Added parameters to ISR trace event. + tx_trace_isr_exit_insert.c Added parameters to ISR trace event. + tx_trace_object_register.c Modified code to ensure universal trace format. + tx_trace_object_unregister.c Modified code to ensure universal trace format. + tx_trace_user_event_insert.c Added interrupt restore in error path, and + added filter option to trace insert. + txe_block_allocate.c Added macro to get current thread. + txe_block_pool_create.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_block_pool_delete.c Added macro to get current thread. + txe_byte_allocate.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_byte_pool_create.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_byte_pool_delete.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_byte_release.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_event_flags_create.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_event_flags_delete.c Added macro to get current thread. + txe_event_flags_get.c Added macro to get current thread. + txe_mutex_create.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_mutex_delete.c Added macro to get current thread. + txe_mutex_get.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_mutex_put.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_queue_create.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_queue_delete.c Added macro to get current thread. + txe_queue_front_send.c Added macro to get current thread. + txe_queue_receive.c Added macro to get current thread. + txe_queue_send.c Added macro to get current thread. + txe_semaphore_create.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_semaphore_delete.c Added macro to get current thread. + txe_semaphore_get.c Added macro to get current thread. + txe_thread_create.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_thread_delete.c Made optimization to caller checking. + txe_thread_preemption_change.c Made optimization to caller checking, added + logic to handle restoring preemption- + threshold values during priority inheritance. + txe_thread_priority_change.c Made optimization to caller checking. + txe_thread_relinquish.c Added macro to get current thread. + txe_thread_reset.c Added macro to get current thread, and added + logic to detect calls from timer thread. + txe_thread_terminate.c Made optimization to caller checking. + txe_thread_time_slice_change.c Made optimization to caller checking. + txe_timer_change.c Made optimization to caller checking. + txe_timer_create.c Made optimization to timer thread checking, + and added macro to get current thread. + txe_timer_delete.c Added macro to get current thread. + tx*.c Changed comments and copyright header. + tx*.h Changed comments and copyright header. + + +04-02-2007 ThreadX generic code version 5.1. This release includes the following + modifications: + + tx_api.h Replaced UL constant modifier with ULONG cast. + tx_block_pool.h Replaced UL constant modifier with ULONG cast. + tx_byte_pool.h Replaced UL constant modifier with ULONG cast. + tx_event_flags.h Replaced UL constant modifier with ULONG cast. + tx_initialize.h Replaced UL constant modifier with ULONG cast. + tx_mutex.h Replaced UL constant modifier with ULONG cast. + tx_queue.h Replaced UL constant modifier with ULONG cast. + tx_semaphore.h Replaced UL constant modifier with ULONG cast. + tx_thread.h Replaced UL constant modifier with ULONG cast + and added logic to use preset global C data. + tx_timer.h Replaced UL constant modifier with ULONG cast. + tx_user.h Added two new conditional build options, + TX_NO_TIMER and TX_USE_PRESET_DATA. + tx_byte_pool_search.c Added optimization for memory search pointer + update. + tx_byte_release.c Added optimization for memory search pointer + update. + tx_event_flags_get.c Added logic for calling from ISRs. + tx_event_flags_info_get.c Added logic to accurately report the currently + set flags in the group. + tx_event_flags_set.c Corrected problem clearing event flags from ISRs. + tx_initialize_high_level.c Added logic to remove the timer logic. + tx_queue_front_send.c Modify code to not remove the oldest message + from the queue in order to avoid losing messages + during timeout processing and optimized message + copying. + tx_queue_receive.c Check for queue front send suspension request + and optimized message copying. + tx_queue_send.c Initialize suspension option field to indicate + type of suspension and optimized message + copying. + tx_thread_create.c Added setup for original priority and threshold. + tx_thread_initialize.c Added logic to use preset global C data. + tx_thread_preemption_change.c Added logic to update and use the original preemption- + threshold, and corrected problem of not setting + preemption-threshold bit when lowering the thread + preemption-threshold. + tx_thread_priority_change.c Added logic to update and use the original priority. + tx_thread_stack_error_notify.c Added included of tx_trace.h. + tx_thread_system_resume.c Fixed conditional declaration of map_index, and + added logic to remove the timer logic. + tx_thread_system_suspend.c Fixed conditional declaration of map_index, and + added logic to remove the timer logic. + txe_timer_change.c Replaced UL constant modifier with ULONG cast. + tx*.c Changed comments and copyright header. + tx*.h Changed comments and copyright header. + + +12-12-2005 Initial ThreadX generic code version 5.0. This release includes the + the following fixes from generic code version 4.0c: + + tx_mutex_create.c Properly initialize mutex owner field to NULL. + tx_mutex_put.c Set the mutex owner to NULL on put operation. + + +2. ThreadX SMP + +02-01-2019 ThreadX generic code version 5.9. This release includes the following + modifications: + + tx_api.h Changed minor version constant, and added a + macro to disable warning of parameter not + used. + tx_mutex_priority_change.c Removed update of the priority inheritance + priority level. + tx_thread_priority_change.c Corrected optimization when no change in the + effective priority is necessary. + tx_thread_relinquish.c Added logic to evaluate mapped core instead of + the current core in evaluating the next thread + replacement, added logic to call rebalance when + the next thread is excluded from running on the + mapped core, and added optimization when thread + at the end of the priority list is the thread + performing the relinquish. + tx_thread_suspend.c Refined error checking for self suspension to + ensure thread context. + tx_thread_time_slice.c Added logic to call rebalance when the next + thread is excluded from running on the mapped + core, and added optimization when thread at the + end of the priority list is the thread being + time-sliced. + + +06-01-2017 ThreadX generic code version 5.8. This release includes the following + modifications: + + tx_api.h Changed minor version constant, added + suspension sequence to verify cleanup + is still necessary, modified code for MISRA + compliance, added alignment type for memory + pools, corrected compiler warnings in macro + definitions, added support for optional + extensions. + tx_thread.h Modified code for MISRA compliance, added + default macro definition for setting up timeout, + added default macro definition for setting up + thread timeout pointer, and added macros for + extending the thread create, delete, and reset + processing. + tx_timer.h Modified code for MISRA compliance, added macro + for extending timer delete, and removed + unnecessary defines. + tx_trace.h Modified code for MISRA compliance. + tx_byte_pool_search.c Modified code for MISRA compliance, added use of + alignment type for searching byte pool. + tx_event_flags_set.c Removed unnecessary code, and modified code for + MISRA compliance. + tx_initialize_kernel_enter.c Added processing extension, and modified code + for MISRA compliance. + tx_mutex_priority_change.c Removed unnecessary code, modified code for MISRA + compliance, and added processing extension. + tx_thread_create.c Modified code for MISRA compliance, added optional + internal thread extension macro, added macro for + setting up the thread timeout, and corrected problem + restoring preemption-threshold during initialization. + tx_thread_initialize.c Modified code for MISRA compliance. + tx_thread_preemption_change.c Modified code for MISRA compliance. + tx_thread_priority_change.c Added processing extension, and modified code for + MISRA compliance. + tx_thread_relinquish.c Modified code for MISRA compliance. + tx_thread_resume.c Modified code for MISRA compliance. + tx_thread_smp_core_exclude.c Modified code for MISRA compliance. + tx_thread_smp_core_exclude_get.c Modified code for MISRA compliance. + tx_thread_smp_current_state_get.c Modified code for MISRA compliance. + tx_thread_smp_debug_entry_insert.c Modified code for MISRA compliance. + tx_thread_smp_high_level_initialize.c Modified code for MISRA compliance. + tx_thread_smp_rebalance_execute_list.c Modified code for MISRA compliance. + tx_thread_smp_utilities.c Added new file for SMP utilities when in-line is disabled. + tx_thread_suspend.c Modified code for MISRA compliance, and added protection + against self suspension with the preempt-disable flag set. + tx_thread_system_preempt_check.c Modified code for MISRA compliance. + tx_thread_system_resume.c Removed unnecessary code, corrected issue with resuming a + thread that was previously in the middle of suspending with + an additional suspension request, corrected issue resuming + a thread with no available cores, and modified code for + MISRA compliance. + tx_thread_system_suspend.c Corrected issue with self-suspending thread not at the head + of its priority list, modified code for MISRA compliance, + and corrected problem setting up the trace information 4 + field. + tx_thread_time_slice.c Modified code for MISRA compliance. + tx_thread_time_slice_change.c Modified code for MISRA compliance. + tx_thread_timeout.c Modified code for MISRA compliance, added suspension + sequence to verify cleanup is still necessary, and added + macro for setting up the thread pointer. + tx_timer_create.c Modified code for MISRA compliance. + tx_timer_initialize.c Modified code for MISRA compliance, added initialization for + timer expired pointer, and added check for TX_NO_TIMER + option. + tx_timer_smp_core_exclude.c Modified code for MISRA compliance. + tx_timer_smp_core_exclude_get.c Modified code for MISRA compliance. + tx_timer_thread_entry.c Modified code for MISRA compliance. + + +08-03-2016 ThreadX generic code version 5.7.2. This release includes the following + modifications (also includes ThreadX 5.7 SP1 non-SMP source): + + tx_api.h Corrected compiler warnings in macro definitions. + tx_timer.h Added the global variable _tx_timer_expired_ptr + which is needed by timer info get. + tx_byte_pool_search.c Modified logic to ensure the integrity of + the search pointer. + tx_mutex_priority_change.c Added logic to reverse preemption-threshold while + the thread's priority is changed. + tx_thread_priority_change.c Added logic to reverse preemption-threshold while + the thread's priority is changed. + tx_thread_smp_rebalance_execute_list.c Corrected the update of possible cores. + tx_thread_system_resume.c Added performance optimization for the simple + preemption case. + tx_thread_system_suspend.c Corrected the update of possible cores, and + added performance optimization by determining + if nontrivial scheduling is possible before full + examination. + tx_timer_create.c Kept protection over timer activation. + tx_timer_initialize.c Added initialization for timer expired pointer, and + added check for TX_NO_TIMER option. + tx_timer_thread_entry.c Ensure timer is not accessed after timeout unless + reactivation is necessary, set pointer to indicate + timer being processed, and perform reactivation with + protection. + tx*.c Changed comments and copyright header. + tx*.h Changed comments and copyright header. + + +04-01-2016 ThreadX generic code version 5.7.1. This release includes the following + modifications: + + tx_api.h Added core excluded/allowed members to the + TX_THREAD structure, and changed member name + control to excluded for internal timer struct. + tx_event_flags_set.c Moved notify function pointer setup before any + thread resumption. + tx_mutex_priority_change.c Added logic to not place thread at head of list + when lowering priority if the priority level has + a thread with preemption-threshold in force, and + optimized processing. + tx_thread.h Added optimized in-line helper functions, and + added preemption-threshold list. + tx_thread_create.c Added clearing of the thread preemption-threshold + list, changed the name of core control to core + excluded in internal timer setup, and added setup + for the new TX_THREAD cores excluded and allowed + members. + tx_thread_initialize.c Added initialization of the preemption-threshold + list. + tx_thread_preemption_change.c Corrected problem disabling preemption-threshold. + tx_thread_priority_change.c Added logic to not place thread at head of list + when lowering priority if the priority level has + a thread with preemption-threshold in force, and + optimized processing. + tx_thread_relinquish.c Corrected preemption-threshold issue, and utilized + new cores allowed member in TX_THREAD. + tx_thread_smp_core_exclude.c Added logic to ensure the core mapped information is + consistent with the new core exclusion. + tx_thread_smp_core_exclude_get.c Utilized new cores excluded member in TX_THREAD. + tx_thread_smp_rebalance_execute_list.c Corrected problem with schedule thread not being + updated in one optimization case, added setup of + the preempted list for preemption-threshold, and + simplified code via in-line functions. + tx_thread_system_resume.c Optimized processing for simple case, and simplified + code via in-line functions. + tx_thread_system_suspend.c Optimized processing for simple case, corrected problem + disabling preemption-threshold, and simplified code via + in-line functions. + tx_thread_time_slice.c Corrected preemption-threshold issue, and utilized new + cores allowed member in TX_THREAD. + tx_timer_create.c Changed the name of core control to core excluded in + internal timer setup. + tx_timer_info_get.c Added check for proper remaining time calculation. + tx_timer_smp_core_exclude.c Changed the name of core control to core excluded in + internal timer setup. + tx_timer_smp_core_exclude_get.c Changed the name of core control to core excluded in + internal timer setup. + tx_timer_thread_entry.c Changed the name of core control to core excluded in + internal timer setup. + tx_trace.h Modified code to sync with standard ThreadX tx_trace.h. + tx*.c Changed comments and copyright header. + tx*.h Changed comments and copyright header. + + +09-01-2015 ThreadX generic code version 5.7. This release includes the following + modifications: + + tx_api.h Modified code for ThreadX 5.7 compatibility, added + default for port-specific memory synchronization primitive, + modified minor version define, added thread start + macro for performing port and/or user specified + processing when a thread starts, and added constant + TX_TIMER_TICKS_PER_SECOND for use by other middleware + components as a common time reference. + tx_thread.h Corrected next priority find for priority levels + greater than 32. + tx_byte_pool_search.c Added code to assert pool ownership after protection + is obtained to ensure no changes to the pool or the + pool search pointer are made without ownership. + tx_initialize_kernel_enter.c Removed TX_INITIALIZE_INIT since it is no longer needed, + and added memory synchronization macros. + tx_thread_preemption_change.c Added optimization to avoid calling rebalance algorithm. + tx_thread_smp_rebalance_execute_list.c Corrected problem scheduling thread on excluded core, + and added various optimizations. + tx_thread_system_resume.c Added protection after the call to _tx_thread_system_return + when the build option TX_NOT_INTERRUPTABLE is used, and added + optimization to avoid calling rebalance algorithm. + tx_thread_system_suspend.c Added protection after the call to _tx_thread_system_return + when the build option TX_NOT_INTERRUPTABLE is used, + corrected problem scheduling thread on excluded core, and + added optimization to avoid unnecessary priority search. + tx*.c Changed comments and copyright header. + tx*.h Changed comments and copyright header. + + +05-01-2014 ThreadX generic code version 5.6.2. This release includes the following + modifications: + + tx_api.h Added timeout sequence information to the + thread control block. + tx_thread.h Made the release cores flag volatile, and + removed unnecessary prototypes. + tx_byte_pool_search.c Added SMP-specific version. + tx_thread_create.c Added logic to initialize the thread's + executing core. + tx_thread_system_resume.c Added optimization in resuming a thread with + core(s) excluded. + tx_thread_system_suspend.c Changed code to eliminate a compiler warning, + added sequence counters for timeouts and + suspension, and corrected problem + suspending the last thread with preemption- + threshold in force. + tx_thread_smp_high_level_initialize.c Updated protection structure member name. + tx_thread_timeout.c Added SMP-specific version. + tx_thread_time_slice.c Added quick check for no time-slice expiration, + and removed protection logic since this function + is called under protection. + tx_timer_thread_entry.c Released protection over timeout call. + tx*.c Changed comments and copyright header. + tx*.h Changed comments and copyright header. + + +12-12-2012 Initial ThreadX SMP generic code version 5.6.1. \ No newline at end of file diff --git a/ports/arc_em/metaware/example_build/sample_threadx/tx_initialize_low_level.s b/ports/arc_em/metaware/example_build/sample_threadx/tx_initialize_low_level.s index 98f127a7..cf55e8db 100644 --- a/ports/arc_em/metaware/example_build/sample_threadx/tx_initialize_low_level.s +++ b/ports/arc_em/metaware/example_build/sample_threadx/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_em/metaware/inc/tx_port.h b/ports/arc_em/metaware/inc/tx_port.h index 7531b285..69be9c31 100644 --- a/ports/arc_em/metaware/inc/tx_port.h +++ b/ports/arc_em/metaware/inc/tx_port.h @@ -321,7 +321,7 @@ void _tx_initialize_start_interrupts(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARCv2_EM/MetaWare Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARCv2_EM/MetaWare Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/arc_em/metaware/src/tx_thread_context_restore.s b/ports/arc_em/metaware/src/tx_thread_context_restore.s index 9e509621..7e1bb8bb 100644 --- a/ports/arc_em/metaware/src/tx_thread_context_restore.s +++ b/ports/arc_em/metaware/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_em/metaware/src/tx_thread_context_save.s b/ports/arc_em/metaware/src/tx_thread_context_save.s index 155ffedd..57013da2 100644 --- a/ports/arc_em/metaware/src/tx_thread_context_save.s +++ b/ports/arc_em/metaware/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_em/metaware/src/tx_thread_interrupt_control.s b/ports/arc_em/metaware/src/tx_thread_interrupt_control.s index 1c9a5f16..6cca4ec7 100644 --- a/ports/arc_em/metaware/src/tx_thread_interrupt_control.s +++ b/ports/arc_em/metaware/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_em/metaware/src/tx_thread_schedule.s b/ports/arc_em/metaware/src/tx_thread_schedule.s index 47c6a3a4..583adae1 100644 --- a/ports/arc_em/metaware/src/tx_thread_schedule.s +++ b/ports/arc_em/metaware/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_em/metaware/src/tx_thread_stack_build.s b/ports/arc_em/metaware/src/tx_thread_stack_build.s index 6bbef133..9eaf86b5 100644 --- a/ports/arc_em/metaware/src/tx_thread_stack_build.s +++ b/ports/arc_em/metaware/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_em/metaware/src/tx_thread_system_return.s b/ports/arc_em/metaware/src/tx_thread_system_return.s index be9d4654..b08e87da 100644 --- a/ports/arc_em/metaware/src/tx_thread_system_return.s +++ b/ports/arc_em/metaware/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_em/metaware/src/tx_timer_interrupt.s b/ports/arc_em/metaware/src/tx_timer_interrupt.s index bc24a361..003260a8 100644 --- a/ports/arc_em/metaware/src/tx_timer_interrupt.s +++ b/ports/arc_em/metaware/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/example_build/sample_threadx/tx_initialize_low_level.s b/ports/arc_hs/metaware/example_build/sample_threadx/tx_initialize_low_level.s index 2e2f814e..56ef5840 100644 --- a/ports/arc_hs/metaware/example_build/sample_threadx/tx_initialize_low_level.s +++ b/ports/arc_hs/metaware/example_build/sample_threadx/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/inc/tx_port.h b/ports/arc_hs/metaware/inc/tx_port.h index e718c86d..19950c03 100644 --- a/ports/arc_hs/metaware/inc/tx_port.h +++ b/ports/arc_hs/metaware/inc/tx_port.h @@ -335,7 +335,7 @@ VOID tx_thread_register_bank_assign(VOID *thread_ptr, UINT register_bank); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARC_HS/MetaWare Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARC_HS/MetaWare Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/arc_hs/metaware/src/tx_initialize_fast_interrupt_setup.s b/ports/arc_hs/metaware/src/tx_initialize_fast_interrupt_setup.s index 9fa7d0a0..c4aa7114 100644 --- a/ports/arc_hs/metaware/src/tx_initialize_fast_interrupt_setup.s +++ b/ports/arc_hs/metaware/src/tx_initialize_fast_interrupt_setup.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/src/tx_thread_context_fast_restore.s b/ports/arc_hs/metaware/src/tx_thread_context_fast_restore.s index 33d8f9b6..089f13de 100644 --- a/ports/arc_hs/metaware/src/tx_thread_context_fast_restore.s +++ b/ports/arc_hs/metaware/src/tx_thread_context_fast_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/src/tx_thread_context_fast_save.s b/ports/arc_hs/metaware/src/tx_thread_context_fast_save.s index 593559ac..d9a80463 100644 --- a/ports/arc_hs/metaware/src/tx_thread_context_fast_save.s +++ b/ports/arc_hs/metaware/src/tx_thread_context_fast_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/src/tx_thread_context_restore.s b/ports/arc_hs/metaware/src/tx_thread_context_restore.s index 2ac68347..79a786c5 100644 --- a/ports/arc_hs/metaware/src/tx_thread_context_restore.s +++ b/ports/arc_hs/metaware/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/src/tx_thread_context_save.s b/ports/arc_hs/metaware/src/tx_thread_context_save.s index bbe0285c..9fcc82e6 100644 --- a/ports/arc_hs/metaware/src/tx_thread_context_save.s +++ b/ports/arc_hs/metaware/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/src/tx_thread_interrupt_control.s b/ports/arc_hs/metaware/src/tx_thread_interrupt_control.s index 854eca74..9d3dacae 100644 --- a/ports/arc_hs/metaware/src/tx_thread_interrupt_control.s +++ b/ports/arc_hs/metaware/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/src/tx_thread_register_bank_assign.s b/ports/arc_hs/metaware/src/tx_thread_register_bank_assign.s index d8c29900..7b9d1114 100644 --- a/ports/arc_hs/metaware/src/tx_thread_register_bank_assign.s +++ b/ports/arc_hs/metaware/src/tx_thread_register_bank_assign.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/src/tx_thread_schedule.s b/ports/arc_hs/metaware/src/tx_thread_schedule.s index 808ef369..954ec371 100644 --- a/ports/arc_hs/metaware/src/tx_thread_schedule.s +++ b/ports/arc_hs/metaware/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/src/tx_thread_stack_build.s b/ports/arc_hs/metaware/src/tx_thread_stack_build.s index cdcdbcdc..8ef5dc98 100644 --- a/ports/arc_hs/metaware/src/tx_thread_stack_build.s +++ b/ports/arc_hs/metaware/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/src/tx_thread_system_return.s b/ports/arc_hs/metaware/src/tx_thread_system_return.s index 3f0047b7..aec09bb4 100644 --- a/ports/arc_hs/metaware/src/tx_thread_system_return.s +++ b/ports/arc_hs/metaware/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arc_hs/metaware/src/tx_timer_interrupt.s b/ports/arc_hs/metaware/src/tx_timer_interrupt.s index a1638243..59410fdc 100644 --- a/ports/arc_hs/metaware/src/tx_timer_interrupt.s +++ b/ports/arc_hs/metaware/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arm11/ac5/example_build/tx_initialize_low_level.s b/ports/arm11/ac5/example_build/tx_initialize_low_level.s index 0a5fa748..541ddb1e 100644 --- a/ports/arm11/ac5/example_build/tx_initialize_low_level.s +++ b/ports/arm11/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/inc/tx_port.h b/ports/arm11/ac5/inc/tx_port.h index 85b3f7c5..9b36bf61 100644 --- a/ports/arm11/ac5/inc/tx_port.h +++ b/ports/arm11/ac5/inc/tx_port.h @@ -319,7 +319,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/AC5 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/arm11/ac5/src/tx_thread_context_restore.s b/ports/arm11/ac5/src/tx_thread_context_restore.s index d0fad3ef..e9dbf9e0 100644 --- a/ports/arm11/ac5/src/tx_thread_context_restore.s +++ b/ports/arm11/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_context_save.s b/ports/arm11/ac5/src/tx_thread_context_save.s index 3e29f534..8c92eeb1 100644 --- a/ports/arm11/ac5/src/tx_thread_context_save.s +++ b/ports/arm11/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_fiq_context_restore.s b/ports/arm11/ac5/src/tx_thread_fiq_context_restore.s index a1b9131e..af516975 100644 --- a/ports/arm11/ac5/src/tx_thread_fiq_context_restore.s +++ b/ports/arm11/ac5/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_fiq_context_save.s b/ports/arm11/ac5/src/tx_thread_fiq_context_save.s index 1c550192..72bebd9d 100644 --- a/ports/arm11/ac5/src/tx_thread_fiq_context_save.s +++ b/ports/arm11/ac5/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_fiq_nesting_end.s b/ports/arm11/ac5/src/tx_thread_fiq_nesting_end.s index a83b23e3..66b82422 100644 --- a/ports/arm11/ac5/src/tx_thread_fiq_nesting_end.s +++ b/ports/arm11/ac5/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_fiq_nesting_start.s b/ports/arm11/ac5/src/tx_thread_fiq_nesting_start.s index 805c4707..fd36e17f 100644 --- a/ports/arm11/ac5/src/tx_thread_fiq_nesting_start.s +++ b/ports/arm11/ac5/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_interrupt_control.s b/ports/arm11/ac5/src/tx_thread_interrupt_control.s index e4250463..7d3bddae 100644 --- a/ports/arm11/ac5/src/tx_thread_interrupt_control.s +++ b/ports/arm11/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_interrupt_disable.s b/ports/arm11/ac5/src/tx_thread_interrupt_disable.s index 161ae212..e2c50cfd 100644 --- a/ports/arm11/ac5/src/tx_thread_interrupt_disable.s +++ b/ports/arm11/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_interrupt_restore.s b/ports/arm11/ac5/src/tx_thread_interrupt_restore.s index d181f439..ad7fb5d2 100644 --- a/ports/arm11/ac5/src/tx_thread_interrupt_restore.s +++ b/ports/arm11/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_irq_nesting_end.s b/ports/arm11/ac5/src/tx_thread_irq_nesting_end.s index a538dca3..a8ee12ad 100644 --- a/ports/arm11/ac5/src/tx_thread_irq_nesting_end.s +++ b/ports/arm11/ac5/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_irq_nesting_start.s b/ports/arm11/ac5/src/tx_thread_irq_nesting_start.s index 52693201..aea8bbf4 100644 --- a/ports/arm11/ac5/src/tx_thread_irq_nesting_start.s +++ b/ports/arm11/ac5/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_schedule.s b/ports/arm11/ac5/src/tx_thread_schedule.s index fe2d1257..17646482 100644 --- a/ports/arm11/ac5/src/tx_thread_schedule.s +++ b/ports/arm11/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_stack_build.s b/ports/arm11/ac5/src/tx_thread_stack_build.s index 0fb9f719..83821335 100644 --- a/ports/arm11/ac5/src/tx_thread_stack_build.s +++ b/ports/arm11/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_system_return.s b/ports/arm11/ac5/src/tx_thread_system_return.s index 6250c817..82a1e0c4 100644 --- a/ports/arm11/ac5/src/tx_thread_system_return.s +++ b/ports/arm11/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_thread_vectored_context_save.s b/ports/arm11/ac5/src/tx_thread_vectored_context_save.s index 71283a33..e9ae138a 100644 --- a/ports/arm11/ac5/src/tx_thread_vectored_context_save.s +++ b/ports/arm11/ac5/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/ac5/src/tx_timer_interrupt.s b/ports/arm11/ac5/src/tx_timer_interrupt.s index 1a2e0300..9d745e0a 100644 --- a/ports/arm11/ac5/src/tx_timer_interrupt.s +++ b/ports/arm11/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/gnu/example_build/reset.S b/ports/arm11/gnu/example_build/reset.S index fb0694e5..a11c826a 100644 --- a/ports/arm11/gnu/example_build/reset.S +++ b/ports/arm11/gnu/example_build/reset.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/example_build/tx_initialize_low_level.S b/ports/arm11/gnu/example_build/tx_initialize_low_level.S index 4cc6704c..f7c4617a 100644 --- a/ports/arm11/gnu/example_build/tx_initialize_low_level.S +++ b/ports/arm11/gnu/example_build/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/inc/tx_port.h b/ports/arm11/gnu/inc/tx_port.h index c9149ba4..23c3e66c 100644 --- a/ports/arm11/gnu/inc/tx_port.h +++ b/ports/arm11/gnu/inc/tx_port.h @@ -308,7 +308,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/arm11/gnu/src/tx_thread_context_restore.S b/ports/arm11/gnu/src/tx_thread_context_restore.S index dfb136d3..6a270b66 100644 --- a/ports/arm11/gnu/src/tx_thread_context_restore.S +++ b/ports/arm11/gnu/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_context_save.S b/ports/arm11/gnu/src/tx_thread_context_save.S index fc066cd9..3fe539d2 100644 --- a/ports/arm11/gnu/src/tx_thread_context_save.S +++ b/ports/arm11/gnu/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_fiq_context_restore.S b/ports/arm11/gnu/src/tx_thread_fiq_context_restore.S index f6afb7a2..3d3dd37a 100644 --- a/ports/arm11/gnu/src/tx_thread_fiq_context_restore.S +++ b/ports/arm11/gnu/src/tx_thread_fiq_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_fiq_context_save.S b/ports/arm11/gnu/src/tx_thread_fiq_context_save.S index acf31146..8dc69191 100644 --- a/ports/arm11/gnu/src/tx_thread_fiq_context_save.S +++ b/ports/arm11/gnu/src/tx_thread_fiq_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_fiq_nesting_end.S b/ports/arm11/gnu/src/tx_thread_fiq_nesting_end.S index ede635f1..82362bbc 100644 --- a/ports/arm11/gnu/src/tx_thread_fiq_nesting_end.S +++ b/ports/arm11/gnu/src/tx_thread_fiq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_fiq_nesting_start.S b/ports/arm11/gnu/src/tx_thread_fiq_nesting_start.S index f6bdd3a2..5a6b6e1b 100644 --- a/ports/arm11/gnu/src/tx_thread_fiq_nesting_start.S +++ b/ports/arm11/gnu/src/tx_thread_fiq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_interrupt_control.S b/ports/arm11/gnu/src/tx_thread_interrupt_control.S index 6f3dc61f..ecc9326d 100644 --- a/ports/arm11/gnu/src/tx_thread_interrupt_control.S +++ b/ports/arm11/gnu/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_interrupt_disable.S b/ports/arm11/gnu/src/tx_thread_interrupt_disable.S index e1653902..f51c2238 100644 --- a/ports/arm11/gnu/src/tx_thread_interrupt_disable.S +++ b/ports/arm11/gnu/src/tx_thread_interrupt_disable.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_interrupt_restore.S b/ports/arm11/gnu/src/tx_thread_interrupt_restore.S index afb3e1c2..8506be1b 100644 --- a/ports/arm11/gnu/src/tx_thread_interrupt_restore.S +++ b/ports/arm11/gnu/src/tx_thread_interrupt_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_irq_nesting_end.S b/ports/arm11/gnu/src/tx_thread_irq_nesting_end.S index 46d417a7..649bbbb0 100644 --- a/ports/arm11/gnu/src/tx_thread_irq_nesting_end.S +++ b/ports/arm11/gnu/src/tx_thread_irq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_irq_nesting_start.S b/ports/arm11/gnu/src/tx_thread_irq_nesting_start.S index 002a67e1..ee949845 100644 --- a/ports/arm11/gnu/src/tx_thread_irq_nesting_start.S +++ b/ports/arm11/gnu/src/tx_thread_irq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_schedule.S b/ports/arm11/gnu/src/tx_thread_schedule.S index 8f41ab3d..9350540c 100644 --- a/ports/arm11/gnu/src/tx_thread_schedule.S +++ b/ports/arm11/gnu/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_stack_build.S b/ports/arm11/gnu/src/tx_thread_stack_build.S index 34472837..7f156ee0 100644 --- a/ports/arm11/gnu/src/tx_thread_stack_build.S +++ b/ports/arm11/gnu/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_system_return.S b/ports/arm11/gnu/src/tx_thread_system_return.S index 735d2c37..1c26a7a0 100644 --- a/ports/arm11/gnu/src/tx_thread_system_return.S +++ b/ports/arm11/gnu/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_thread_vectored_context_save.S b/ports/arm11/gnu/src/tx_thread_vectored_context_save.S index c7920248..23f82007 100644 --- a/ports/arm11/gnu/src/tx_thread_vectored_context_save.S +++ b/ports/arm11/gnu/src/tx_thread_vectored_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/gnu/src/tx_timer_interrupt.S b/ports/arm11/gnu/src/tx_timer_interrupt.S index e8e1bb4a..137c5883 100644 --- a/ports/arm11/gnu/src/tx_timer_interrupt.S +++ b/ports/arm11/gnu/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm11/iar/example_build/tx_initialize_low_level.s b/ports/arm11/iar/example_build/tx_initialize_low_level.s index c5f5e9fa..7242cfe4 100644 --- a/ports/arm11/iar/example_build/tx_initialize_low_level.s +++ b/ports/arm11/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/inc/tx_port.h b/ports/arm11/iar/inc/tx_port.h index c02bf476..8bcdaa98 100644 --- a/ports/arm11/iar/inc/tx_port.h +++ b/ports/arm11/iar/inc/tx_port.h @@ -374,7 +374,7 @@ void _tx_thread_interrupt_restore(UINT old_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/arm11/iar/src/tx_thread_context_restore.s b/ports/arm11/iar/src/tx_thread_context_restore.s index 2e2ef09a..211b81dd 100644 --- a/ports/arm11/iar/src/tx_thread_context_restore.s +++ b/ports/arm11/iar/src/tx_thread_context_restore.s @@ -1,14 +1,13 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_context_save.s b/ports/arm11/iar/src/tx_thread_context_save.s index 67209da9..c4d5b1b4 100644 --- a/ports/arm11/iar/src/tx_thread_context_save.s +++ b/ports/arm11/iar/src/tx_thread_context_save.s @@ -1,14 +1,13 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_fiq_context_restore.s b/ports/arm11/iar/src/tx_thread_fiq_context_restore.s index 6691b816..31824589 100644 --- a/ports/arm11/iar/src/tx_thread_fiq_context_restore.s +++ b/ports/arm11/iar/src/tx_thread_fiq_context_restore.s @@ -1,14 +1,13 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_fiq_context_save.s b/ports/arm11/iar/src/tx_thread_fiq_context_save.s index 1e81a99c..17062581 100644 --- a/ports/arm11/iar/src/tx_thread_fiq_context_save.s +++ b/ports/arm11/iar/src/tx_thread_fiq_context_save.s @@ -1,14 +1,13 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ;/**************************************************************************/ ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_fiq_nesting_end.s b/ports/arm11/iar/src/tx_thread_fiq_nesting_end.s index 81acec95..0d71933a 100644 --- a/ports/arm11/iar/src/tx_thread_fiq_nesting_end.s +++ b/ports/arm11/iar/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_fiq_nesting_start.s b/ports/arm11/iar/src/tx_thread_fiq_nesting_start.s index 0e4e7f81..7b2b36cb 100644 --- a/ports/arm11/iar/src/tx_thread_fiq_nesting_start.s +++ b/ports/arm11/iar/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_interrupt_control.s b/ports/arm11/iar/src/tx_thread_interrupt_control.s index 3c663372..4cf6b917 100644 --- a/ports/arm11/iar/src/tx_thread_interrupt_control.s +++ b/ports/arm11/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_interrupt_disable.s b/ports/arm11/iar/src/tx_thread_interrupt_disable.s index 61b86028..e1a61860 100644 --- a/ports/arm11/iar/src/tx_thread_interrupt_disable.s +++ b/ports/arm11/iar/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_interrupt_restore.s b/ports/arm11/iar/src/tx_thread_interrupt_restore.s index 090ae19e..28856151 100644 --- a/ports/arm11/iar/src/tx_thread_interrupt_restore.s +++ b/ports/arm11/iar/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_irq_nesting_end.s b/ports/arm11/iar/src/tx_thread_irq_nesting_end.s index c6dd4253..7a7a3585 100644 --- a/ports/arm11/iar/src/tx_thread_irq_nesting_end.s +++ b/ports/arm11/iar/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_irq_nesting_start.s b/ports/arm11/iar/src/tx_thread_irq_nesting_start.s index 7f014bfe..b76d1ff6 100644 --- a/ports/arm11/iar/src/tx_thread_irq_nesting_start.s +++ b/ports/arm11/iar/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_schedule.s b/ports/arm11/iar/src/tx_thread_schedule.s index d7f50ec6..761ec21c 100644 --- a/ports/arm11/iar/src/tx_thread_schedule.s +++ b/ports/arm11/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_stack_build.s b/ports/arm11/iar/src/tx_thread_stack_build.s index 61fbb2d3..4e32e1fa 100644 --- a/ports/arm11/iar/src/tx_thread_stack_build.s +++ b/ports/arm11/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_system_return.s b/ports/arm11/iar/src/tx_thread_system_return.s index 1f71e151..c7042dfb 100644 --- a/ports/arm11/iar/src/tx_thread_system_return.s +++ b/ports/arm11/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_thread_vectored_context_save.s b/ports/arm11/iar/src/tx_thread_vectored_context_save.s index e2409000..e287b8a5 100644 --- a/ports/arm11/iar/src/tx_thread_vectored_context_save.s +++ b/ports/arm11/iar/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm11/iar/src/tx_timer_interrupt.s b/ports/arm11/iar/src/tx_timer_interrupt.s index 4d48d036..550bc007 100644 --- a/ports/arm11/iar/src/tx_timer_interrupt.s +++ b/ports/arm11/iar/src/tx_timer_interrupt.s @@ -1,15 +1,14 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/example_build/tx_initialize_low_level.s b/ports/arm9/ac5/example_build/tx_initialize_low_level.s index 14a76755..f2420967 100644 --- a/ports/arm9/ac5/example_build/tx_initialize_low_level.s +++ b/ports/arm9/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/inc/tx_port.h b/ports/arm9/ac5/inc/tx_port.h index 79df76ea..02324827 100644 --- a/ports/arm9/ac5/inc/tx_port.h +++ b/ports/arm9/ac5/inc/tx_port.h @@ -321,7 +321,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/AC5 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/arm9/ac5/src/tx_thread_context_restore.s b/ports/arm9/ac5/src/tx_thread_context_restore.s index 843fea3b..ff4f3324 100644 --- a/ports/arm9/ac5/src/tx_thread_context_restore.s +++ b/ports/arm9/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_context_save.s b/ports/arm9/ac5/src/tx_thread_context_save.s index e491057a..6e7963bf 100644 --- a/ports/arm9/ac5/src/tx_thread_context_save.s +++ b/ports/arm9/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_fiq_context_restore.s b/ports/arm9/ac5/src/tx_thread_fiq_context_restore.s index 2217bedb..906b9bd1 100644 --- a/ports/arm9/ac5/src/tx_thread_fiq_context_restore.s +++ b/ports/arm9/ac5/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_fiq_context_save.s b/ports/arm9/ac5/src/tx_thread_fiq_context_save.s index cc837c0c..93be71d7 100644 --- a/ports/arm9/ac5/src/tx_thread_fiq_context_save.s +++ b/ports/arm9/ac5/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_fiq_nesting_end.s b/ports/arm9/ac5/src/tx_thread_fiq_nesting_end.s index 2d2795f4..ee8484ce 100644 --- a/ports/arm9/ac5/src/tx_thread_fiq_nesting_end.s +++ b/ports/arm9/ac5/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_fiq_nesting_start.s b/ports/arm9/ac5/src/tx_thread_fiq_nesting_start.s index 28fe5c89..e2e9435b 100644 --- a/ports/arm9/ac5/src/tx_thread_fiq_nesting_start.s +++ b/ports/arm9/ac5/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_interrupt_control.s b/ports/arm9/ac5/src/tx_thread_interrupt_control.s index 93a22c9b..b9a99e0c 100644 --- a/ports/arm9/ac5/src/tx_thread_interrupt_control.s +++ b/ports/arm9/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_interrupt_disable.s b/ports/arm9/ac5/src/tx_thread_interrupt_disable.s index a53b4288..01e85f7f 100644 --- a/ports/arm9/ac5/src/tx_thread_interrupt_disable.s +++ b/ports/arm9/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_interrupt_restore.s b/ports/arm9/ac5/src/tx_thread_interrupt_restore.s index c33617ea..638d1d0d 100644 --- a/ports/arm9/ac5/src/tx_thread_interrupt_restore.s +++ b/ports/arm9/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_irq_nesting_end.s b/ports/arm9/ac5/src/tx_thread_irq_nesting_end.s index c669807a..032d4dcc 100644 --- a/ports/arm9/ac5/src/tx_thread_irq_nesting_end.s +++ b/ports/arm9/ac5/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_irq_nesting_start.s b/ports/arm9/ac5/src/tx_thread_irq_nesting_start.s index 0aff9799..3da96c71 100644 --- a/ports/arm9/ac5/src/tx_thread_irq_nesting_start.s +++ b/ports/arm9/ac5/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_schedule.s b/ports/arm9/ac5/src/tx_thread_schedule.s index ec38ea2f..23b678e2 100644 --- a/ports/arm9/ac5/src/tx_thread_schedule.s +++ b/ports/arm9/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_stack_build.s b/ports/arm9/ac5/src/tx_thread_stack_build.s index af4a583e..2ca47eb6 100644 --- a/ports/arm9/ac5/src/tx_thread_stack_build.s +++ b/ports/arm9/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_system_return.s b/ports/arm9/ac5/src/tx_thread_system_return.s index f41a62d5..bf9f1735 100644 --- a/ports/arm9/ac5/src/tx_thread_system_return.s +++ b/ports/arm9/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_thread_vectored_context_save.s b/ports/arm9/ac5/src/tx_thread_vectored_context_save.s index 428a8de2..ede3ec49 100644 --- a/ports/arm9/ac5/src/tx_thread_vectored_context_save.s +++ b/ports/arm9/ac5/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/ac5/src/tx_timer_interrupt.s b/ports/arm9/ac5/src/tx_timer_interrupt.s index 91bcd629..061c5806 100644 --- a/ports/arm9/ac5/src/tx_timer_interrupt.s +++ b/ports/arm9/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/gnu/example_build/reset.S b/ports/arm9/gnu/example_build/reset.S index fb0694e5..a11c826a 100644 --- a/ports/arm9/gnu/example_build/reset.S +++ b/ports/arm9/gnu/example_build/reset.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/example_build/tx_initialize_low_level.S b/ports/arm9/gnu/example_build/tx_initialize_low_level.S index dcf90a73..1f2207ec 100644 --- a/ports/arm9/gnu/example_build/tx_initialize_low_level.S +++ b/ports/arm9/gnu/example_build/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/inc/tx_port.h b/ports/arm9/gnu/inc/tx_port.h index 5c0a5940..bc52ebe7 100644 --- a/ports/arm9/gnu/inc/tx_port.h +++ b/ports/arm9/gnu/inc/tx_port.h @@ -308,7 +308,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/arm9/gnu/src/tx_thread_context_restore.S b/ports/arm9/gnu/src/tx_thread_context_restore.S index fde80688..61087c84 100644 --- a/ports/arm9/gnu/src/tx_thread_context_restore.S +++ b/ports/arm9/gnu/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_context_save.S b/ports/arm9/gnu/src/tx_thread_context_save.S index 5e717657..f2ef9712 100644 --- a/ports/arm9/gnu/src/tx_thread_context_save.S +++ b/ports/arm9/gnu/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_fiq_context_restore.S b/ports/arm9/gnu/src/tx_thread_fiq_context_restore.S index 522d6f30..5ac52543 100644 --- a/ports/arm9/gnu/src/tx_thread_fiq_context_restore.S +++ b/ports/arm9/gnu/src/tx_thread_fiq_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_fiq_context_save.S b/ports/arm9/gnu/src/tx_thread_fiq_context_save.S index bc860a4f..121dee2a 100644 --- a/ports/arm9/gnu/src/tx_thread_fiq_context_save.S +++ b/ports/arm9/gnu/src/tx_thread_fiq_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_fiq_nesting_end.S b/ports/arm9/gnu/src/tx_thread_fiq_nesting_end.S index 047326e3..ded353be 100644 --- a/ports/arm9/gnu/src/tx_thread_fiq_nesting_end.S +++ b/ports/arm9/gnu/src/tx_thread_fiq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_fiq_nesting_start.S b/ports/arm9/gnu/src/tx_thread_fiq_nesting_start.S index 509c4011..be12db77 100644 --- a/ports/arm9/gnu/src/tx_thread_fiq_nesting_start.S +++ b/ports/arm9/gnu/src/tx_thread_fiq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_interrupt_control.S b/ports/arm9/gnu/src/tx_thread_interrupt_control.S index bded00b9..2c72a853 100644 --- a/ports/arm9/gnu/src/tx_thread_interrupt_control.S +++ b/ports/arm9/gnu/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_interrupt_disable.S b/ports/arm9/gnu/src/tx_thread_interrupt_disable.S index b405a9e5..dbd7a6db 100644 --- a/ports/arm9/gnu/src/tx_thread_interrupt_disable.S +++ b/ports/arm9/gnu/src/tx_thread_interrupt_disable.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_interrupt_restore.S b/ports/arm9/gnu/src/tx_thread_interrupt_restore.S index 76ff4e3f..e30d3577 100644 --- a/ports/arm9/gnu/src/tx_thread_interrupt_restore.S +++ b/ports/arm9/gnu/src/tx_thread_interrupt_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_irq_nesting_end.S b/ports/arm9/gnu/src/tx_thread_irq_nesting_end.S index 5dfe9e43..afbca2cf 100644 --- a/ports/arm9/gnu/src/tx_thread_irq_nesting_end.S +++ b/ports/arm9/gnu/src/tx_thread_irq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_irq_nesting_start.S b/ports/arm9/gnu/src/tx_thread_irq_nesting_start.S index 11af6328..060a471c 100644 --- a/ports/arm9/gnu/src/tx_thread_irq_nesting_start.S +++ b/ports/arm9/gnu/src/tx_thread_irq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_schedule.S b/ports/arm9/gnu/src/tx_thread_schedule.S index a57052fb..50affb8c 100644 --- a/ports/arm9/gnu/src/tx_thread_schedule.S +++ b/ports/arm9/gnu/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_stack_build.S b/ports/arm9/gnu/src/tx_thread_stack_build.S index 5cfcd67f..675c1f4f 100644 --- a/ports/arm9/gnu/src/tx_thread_stack_build.S +++ b/ports/arm9/gnu/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_system_return.S b/ports/arm9/gnu/src/tx_thread_system_return.S index 8d364e03..ba0ed9bb 100644 --- a/ports/arm9/gnu/src/tx_thread_system_return.S +++ b/ports/arm9/gnu/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_thread_vectored_context_save.S b/ports/arm9/gnu/src/tx_thread_vectored_context_save.S index e5498426..d123e054 100644 --- a/ports/arm9/gnu/src/tx_thread_vectored_context_save.S +++ b/ports/arm9/gnu/src/tx_thread_vectored_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/gnu/src/tx_timer_interrupt.S b/ports/arm9/gnu/src/tx_timer_interrupt.S index 3dc2f519..48bee7f7 100644 --- a/ports/arm9/gnu/src/tx_timer_interrupt.S +++ b/ports/arm9/gnu/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/arm9/iar/example_build/tx_initialize_low_level.s b/ports/arm9/iar/example_build/tx_initialize_low_level.s index bef3c55f..89024b8e 100644 --- a/ports/arm9/iar/example_build/tx_initialize_low_level.s +++ b/ports/arm9/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/inc/tx_port.h b/ports/arm9/iar/inc/tx_port.h index 15f093eb..33c50835 100644 --- a/ports/arm9/iar/inc/tx_port.h +++ b/ports/arm9/iar/inc/tx_port.h @@ -374,7 +374,7 @@ void _tx_thread_interrupt_restore(UINT old_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/arm9/iar/src/tx_thread_context_restore.s b/ports/arm9/iar/src/tx_thread_context_restore.s index 7647a367..ac57cd96 100644 --- a/ports/arm9/iar/src/tx_thread_context_restore.s +++ b/ports/arm9/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_context_save.s b/ports/arm9/iar/src/tx_thread_context_save.s index 006125b0..db77a17b 100644 --- a/ports/arm9/iar/src/tx_thread_context_save.s +++ b/ports/arm9/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_fiq_context_restore.s b/ports/arm9/iar/src/tx_thread_fiq_context_restore.s index 4cd8a930..137714b6 100644 --- a/ports/arm9/iar/src/tx_thread_fiq_context_restore.s +++ b/ports/arm9/iar/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_fiq_context_save.s b/ports/arm9/iar/src/tx_thread_fiq_context_save.s index 6acf2e03..562d5132 100644 --- a/ports/arm9/iar/src/tx_thread_fiq_context_save.s +++ b/ports/arm9/iar/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_fiq_nesting_end.s b/ports/arm9/iar/src/tx_thread_fiq_nesting_end.s index e80da502..e3897977 100644 --- a/ports/arm9/iar/src/tx_thread_fiq_nesting_end.s +++ b/ports/arm9/iar/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_fiq_nesting_start.s b/ports/arm9/iar/src/tx_thread_fiq_nesting_start.s index 0a1c5ae2..41867e49 100644 --- a/ports/arm9/iar/src/tx_thread_fiq_nesting_start.s +++ b/ports/arm9/iar/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_interrupt_control.s b/ports/arm9/iar/src/tx_thread_interrupt_control.s index 0146e604..a6d540a7 100644 --- a/ports/arm9/iar/src/tx_thread_interrupt_control.s +++ b/ports/arm9/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_interrupt_disable.s b/ports/arm9/iar/src/tx_thread_interrupt_disable.s index daa4cee7..64c7508a 100644 --- a/ports/arm9/iar/src/tx_thread_interrupt_disable.s +++ b/ports/arm9/iar/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_interrupt_restore.s b/ports/arm9/iar/src/tx_thread_interrupt_restore.s index 570ec9ec..deace508 100644 --- a/ports/arm9/iar/src/tx_thread_interrupt_restore.s +++ b/ports/arm9/iar/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_irq_nesting_end.s b/ports/arm9/iar/src/tx_thread_irq_nesting_end.s index 9718fb97..ff38c1ca 100644 --- a/ports/arm9/iar/src/tx_thread_irq_nesting_end.s +++ b/ports/arm9/iar/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_irq_nesting_start.s b/ports/arm9/iar/src/tx_thread_irq_nesting_start.s index 0dab95cf..5e08187c 100644 --- a/ports/arm9/iar/src/tx_thread_irq_nesting_start.s +++ b/ports/arm9/iar/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_schedule.s b/ports/arm9/iar/src/tx_thread_schedule.s index dcef554a..86a70a4f 100644 --- a/ports/arm9/iar/src/tx_thread_schedule.s +++ b/ports/arm9/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_stack_build.s b/ports/arm9/iar/src/tx_thread_stack_build.s index 94f252f0..c59c61f4 100644 --- a/ports/arm9/iar/src/tx_thread_stack_build.s +++ b/ports/arm9/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_system_return.s b/ports/arm9/iar/src/tx_thread_system_return.s index 8281dc64..e8660d9b 100644 --- a/ports/arm9/iar/src/tx_thread_system_return.s +++ b/ports/arm9/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_thread_vectored_context_save.s b/ports/arm9/iar/src/tx_thread_vectored_context_save.s index 9eccd2ac..1aa26ae1 100644 --- a/ports/arm9/iar/src/tx_thread_vectored_context_save.s +++ b/ports/arm9/iar/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/arm9/iar/src/tx_timer_interrupt.s b/ports/arm9/iar/src/tx_timer_interrupt.s index cdd32c06..28bac145 100644 --- a/ports/arm9/iar/src/tx_timer_interrupt.s +++ b/ports/arm9/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/c667x/ccs/example_build/sample_threadx_c6678evm/tx_initialize_low_level.asm b/ports/c667x/ccs/example_build/sample_threadx_c6678evm/tx_initialize_low_level.asm index 0cef8062..686220c5 100644 --- a/ports/c667x/ccs/example_build/sample_threadx_c6678evm/tx_initialize_low_level.asm +++ b/ports/c667x/ccs/example_build/sample_threadx_c6678evm/tx_initialize_low_level.asm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/c667x/ccs/example_build/sample_threadx_ta6678fmc/tx_initialize_low_level.asm b/ports/c667x/ccs/example_build/sample_threadx_ta6678fmc/tx_initialize_low_level.asm index 780ba352..14591f59 100644 --- a/ports/c667x/ccs/example_build/sample_threadx_ta6678fmc/tx_initialize_low_level.asm +++ b/ports/c667x/ccs/example_build/sample_threadx_ta6678fmc/tx_initialize_low_level.asm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/c667x/ccs/inc/tx_port.h b/ports/c667x/ccs/inc/tx_port.h index fc55439c..55fa6dfd 100644 --- a/ports/c667x/ccs/inc/tx_port.h +++ b/ports/c667x/ccs/inc/tx_port.h @@ -270,7 +270,7 @@ unsigned int _tx_thread_interrupt_control(unsigned int); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX C667x/TI Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX C667x/TI Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/c667x/ccs/src/tx_thread_context_restore.asm b/ports/c667x/ccs/src/tx_thread_context_restore.asm index 903f5392..593881ba 100644 --- a/ports/c667x/ccs/src/tx_thread_context_restore.asm +++ b/ports/c667x/ccs/src/tx_thread_context_restore.asm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/c667x/ccs/src/tx_thread_context_save.asm b/ports/c667x/ccs/src/tx_thread_context_save.asm index 0268a5ce..795f720e 100644 --- a/ports/c667x/ccs/src/tx_thread_context_save.asm +++ b/ports/c667x/ccs/src/tx_thread_context_save.asm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/c667x/ccs/src/tx_thread_interrupt_control.asm b/ports/c667x/ccs/src/tx_thread_interrupt_control.asm index 75192bb5..ff39fe91 100644 --- a/ports/c667x/ccs/src/tx_thread_interrupt_control.asm +++ b/ports/c667x/ccs/src/tx_thread_interrupt_control.asm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/c667x/ccs/src/tx_thread_schedule.asm b/ports/c667x/ccs/src/tx_thread_schedule.asm index 13f2c0e3..2b40fec1 100644 --- a/ports/c667x/ccs/src/tx_thread_schedule.asm +++ b/ports/c667x/ccs/src/tx_thread_schedule.asm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/c667x/ccs/src/tx_thread_stack_build.asm b/ports/c667x/ccs/src/tx_thread_stack_build.asm index d068d4a3..dabfea41 100644 --- a/ports/c667x/ccs/src/tx_thread_stack_build.asm +++ b/ports/c667x/ccs/src/tx_thread_stack_build.asm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/c667x/ccs/src/tx_thread_system_return.asm b/ports/c667x/ccs/src/tx_thread_system_return.asm index 45d91121..bf4c5caf 100644 --- a/ports/c667x/ccs/src/tx_thread_system_return.asm +++ b/ports/c667x/ccs/src/tx_thread_system_return.asm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/c667x/ccs/src/tx_timer_interrupt.asm b/ports/c667x/ccs/src/tx_timer_interrupt.asm index d6777830..60dd91b6 100644 --- a/ports/c667x/ccs/src/tx_timer_interrupt.asm +++ b/ports/c667x/ccs/src/tx_timer_interrupt.asm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a12/ac6/inc/tx_port.h b/ports/cortex_a12/ac6/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a12/ac6/inc/tx_port.h +++ b/ports/cortex_a12/ac6/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a12/gnu/inc/tx_port.h b/ports/cortex_a12/gnu/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a12/gnu/inc/tx_port.h +++ b/ports/cortex_a12/gnu/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a15/ac6/inc/tx_port.h b/ports/cortex_a15/ac6/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a15/ac6/inc/tx_port.h +++ b/ports/cortex_a15/ac6/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a15/gnu/inc/tx_port.h b/ports/cortex_a15/gnu/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a15/gnu/inc/tx_port.h +++ b/ports/cortex_a15/gnu/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a15/iar/example_build/tx_initialize_low_level.s b/ports/cortex_a15/iar/example_build/tx_initialize_low_level.s index 8e309601..6b32af58 100644 --- a/ports/cortex_a15/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_a15/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/inc/tx_port.h b/ports/cortex_a15/iar/inc/tx_port.h index e3a5f2b2..a492d81e 100644 --- a/ports/cortex_a15/iar/inc/tx_port.h +++ b/ports/cortex_a15/iar/inc/tx_port.h @@ -384,7 +384,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A15/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A15/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_a15/iar/src/tx_thread_context_restore.s b/ports/cortex_a15/iar/src/tx_thread_context_restore.s index a119bd7d..64584101 100644 --- a/ports/cortex_a15/iar/src/tx_thread_context_restore.s +++ b/ports/cortex_a15/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_context_save.s b/ports/cortex_a15/iar/src/tx_thread_context_save.s index 9027151f..09d94175 100644 --- a/ports/cortex_a15/iar/src/tx_thread_context_save.s +++ b/ports/cortex_a15/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_fiq_context_restore.s b/ports/cortex_a15/iar/src/tx_thread_fiq_context_restore.s index 828f7823..bbbf8cf1 100644 --- a/ports/cortex_a15/iar/src/tx_thread_fiq_context_restore.s +++ b/ports/cortex_a15/iar/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_fiq_context_save.s b/ports/cortex_a15/iar/src/tx_thread_fiq_context_save.s index e4666b3f..b8828834 100644 --- a/ports/cortex_a15/iar/src/tx_thread_fiq_context_save.s +++ b/ports/cortex_a15/iar/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_fiq_nesting_end.s b/ports/cortex_a15/iar/src/tx_thread_fiq_nesting_end.s index a15bd107..f8a73cbc 100644 --- a/ports/cortex_a15/iar/src/tx_thread_fiq_nesting_end.s +++ b/ports/cortex_a15/iar/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_fiq_nesting_start.s b/ports/cortex_a15/iar/src/tx_thread_fiq_nesting_start.s index 87b7356b..497d7421 100644 --- a/ports/cortex_a15/iar/src/tx_thread_fiq_nesting_start.s +++ b/ports/cortex_a15/iar/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_interrupt_control.s b/ports/cortex_a15/iar/src/tx_thread_interrupt_control.s index f9145fee..ce9d08a7 100644 --- a/ports/cortex_a15/iar/src/tx_thread_interrupt_control.s +++ b/ports/cortex_a15/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_interrupt_disable.s b/ports/cortex_a15/iar/src/tx_thread_interrupt_disable.s index 4f3acf28..19c70c89 100644 --- a/ports/cortex_a15/iar/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_a15/iar/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_interrupt_restore.s b/ports/cortex_a15/iar/src/tx_thread_interrupt_restore.s index 0f3a5bbc..70c949b3 100644 --- a/ports/cortex_a15/iar/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_a15/iar/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_irq_nesting_end.s b/ports/cortex_a15/iar/src/tx_thread_irq_nesting_end.s index 72eb215d..f1662aba 100644 --- a/ports/cortex_a15/iar/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_a15/iar/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_irq_nesting_start.s b/ports/cortex_a15/iar/src/tx_thread_irq_nesting_start.s index b6d65e50..21151129 100644 --- a/ports/cortex_a15/iar/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_a15/iar/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_schedule.s b/ports/cortex_a15/iar/src/tx_thread_schedule.s index 8fb826f8..c98087aa 100644 --- a/ports/cortex_a15/iar/src/tx_thread_schedule.s +++ b/ports/cortex_a15/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_stack_build.s b/ports/cortex_a15/iar/src/tx_thread_stack_build.s index 1ba0904a..141a49bd 100644 --- a/ports/cortex_a15/iar/src/tx_thread_stack_build.s +++ b/ports/cortex_a15/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_system_return.s b/ports/cortex_a15/iar/src/tx_thread_system_return.s index e32e14bc..3a1d2ba6 100644 --- a/ports/cortex_a15/iar/src/tx_thread_system_return.s +++ b/ports/cortex_a15/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_thread_vectored_context_save.s b/ports/cortex_a15/iar/src/tx_thread_vectored_context_save.s index 62ba3239..8d05bd80 100644 --- a/ports/cortex_a15/iar/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_a15/iar/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a15/iar/src/tx_timer_interrupt.s b/ports/cortex_a15/iar/src/tx_timer_interrupt.s index adfd0123..9a37d02a 100644 --- a/ports/cortex_a15/iar/src/tx_timer_interrupt.s +++ b/ports/cortex_a15/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a17/ac6/inc/tx_port.h b/ports/cortex_a17/ac6/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a17/ac6/inc/tx_port.h +++ b/ports/cortex_a17/ac6/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a17/gnu/inc/tx_port.h b/ports/cortex_a17/gnu/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a17/gnu/inc/tx_port.h +++ b/ports/cortex_a17/gnu/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a34/ac6/inc/tx_port.h b/ports/cortex_a34/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a34/ac6/inc/tx_port.h +++ b/ports/cortex_a34/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a34/gnu/inc/tx_port.h b/ports/cortex_a34/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a34/gnu/inc/tx_port.h +++ b/ports/cortex_a34/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a35/ac6/inc/tx_port.h b/ports/cortex_a35/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a35/ac6/inc/tx_port.h +++ b/ports/cortex_a35/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a35/gnu/inc/tx_port.h b/ports/cortex_a35/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a35/gnu/inc/tx_port.h +++ b/ports/cortex_a35/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a5/ac5/example_build/tx_initialize_low_level.s b/ports/cortex_a5/ac5/example_build/tx_initialize_low_level.s index 68ccca3a..af7e965c 100644 --- a/ports/cortex_a5/ac5/example_build/tx_initialize_low_level.s +++ b/ports/cortex_a5/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/inc/tx_port.h b/ports/cortex_a5/ac5/inc/tx_port.h index 6ec3acb7..9ccd1480 100644 --- a/ports/cortex_a5/ac5/inc/tx_port.h +++ b/ports/cortex_a5/ac5/inc/tx_port.h @@ -326,7 +326,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/AC5 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a5/ac5/src/tx_thread_context_restore.s b/ports/cortex_a5/ac5/src/tx_thread_context_restore.s index 8191ef18..35652d4f 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_context_restore.s +++ b/ports/cortex_a5/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_context_save.s b/ports/cortex_a5/ac5/src/tx_thread_context_save.s index 955a8dee..20630974 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_context_save.s +++ b/ports/cortex_a5/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_fiq_context_restore.s b/ports/cortex_a5/ac5/src/tx_thread_fiq_context_restore.s index 2543d539..fd513c2c 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_fiq_context_restore.s +++ b/ports/cortex_a5/ac5/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_fiq_context_save.s b/ports/cortex_a5/ac5/src/tx_thread_fiq_context_save.s index 6f36ca60..e45574f3 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_fiq_context_save.s +++ b/ports/cortex_a5/ac5/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_fiq_nesting_end.s b/ports/cortex_a5/ac5/src/tx_thread_fiq_nesting_end.s index 412b4e88..d5d9f51a 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_fiq_nesting_end.s +++ b/ports/cortex_a5/ac5/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_fiq_nesting_start.s b/ports/cortex_a5/ac5/src/tx_thread_fiq_nesting_start.s index 4fbc5eb2..b12d14da 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_fiq_nesting_start.s +++ b/ports/cortex_a5/ac5/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_interrupt_control.s b/ports/cortex_a5/ac5/src/tx_thread_interrupt_control.s index 16f7d7a4..c8056c39 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_interrupt_control.s +++ b/ports/cortex_a5/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_interrupt_disable.s b/ports/cortex_a5/ac5/src/tx_thread_interrupt_disable.s index 686445bc..8a59297c 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_a5/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_interrupt_restore.s b/ports/cortex_a5/ac5/src/tx_thread_interrupt_restore.s index 70f1d7ae..aa83ad27 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_a5/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_irq_nesting_end.s b/ports/cortex_a5/ac5/src/tx_thread_irq_nesting_end.s index 4d3febb5..ae508e4a 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_a5/ac5/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_irq_nesting_start.s b/ports/cortex_a5/ac5/src/tx_thread_irq_nesting_start.s index c0e22c3e..c326590b 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_a5/ac5/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_schedule.s b/ports/cortex_a5/ac5/src/tx_thread_schedule.s index 1393e711..4ff4083c 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_schedule.s +++ b/ports/cortex_a5/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_stack_build.s b/ports/cortex_a5/ac5/src/tx_thread_stack_build.s index 967a8ce7..b006a943 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_stack_build.s +++ b/ports/cortex_a5/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_system_return.s b/ports/cortex_a5/ac5/src/tx_thread_system_return.s index e56f898a..26925f8a 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_system_return.s +++ b/ports/cortex_a5/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_thread_vectored_context_save.s b/ports/cortex_a5/ac5/src/tx_thread_vectored_context_save.s index f77f2f49..53b988a0 100644 --- a/ports/cortex_a5/ac5/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_a5/ac5/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac5/src/tx_timer_interrupt.s b/ports/cortex_a5/ac5/src/tx_timer_interrupt.s index 5516ee99..052b590d 100644 --- a/ports/cortex_a5/ac5/src/tx_timer_interrupt.s +++ b/ports/cortex_a5/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/ac6/inc/tx_port.h b/ports/cortex_a5/ac6/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a5/ac6/inc/tx_port.h +++ b/ports/cortex_a5/ac6/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a5/ghs/inc/tx_port.h b/ports/cortex_a5/ghs/inc/tx_port.h index e591cef7..0ea0eaaf 100644 --- a/ports/cortex_a5/ghs/inc/tx_port.h +++ b/ports/cortex_a5/ghs/inc/tx_port.h @@ -394,7 +394,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/Green Hills Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/Green Hills Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a5/gnu/inc/tx_port.h b/ports/cortex_a5/gnu/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a5/gnu/inc/tx_port.h +++ b/ports/cortex_a5/gnu/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a5/iar/example_build/tx_initialize_low_level.s b/ports/cortex_a5/iar/example_build/tx_initialize_low_level.s index e46e9fb1..ca458fd3 100644 --- a/ports/cortex_a5/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_a5/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/inc/tx_port.h b/ports/cortex_a5/iar/inc/tx_port.h index bb3b0f2b..a239d50b 100644 --- a/ports/cortex_a5/iar/inc/tx_port.h +++ b/ports/cortex_a5/iar/inc/tx_port.h @@ -382,7 +382,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_a5/iar/src/tx_thread_context_restore.s b/ports/cortex_a5/iar/src/tx_thread_context_restore.s index 8a40434e..c54bd762 100644 --- a/ports/cortex_a5/iar/src/tx_thread_context_restore.s +++ b/ports/cortex_a5/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_context_save.s b/ports/cortex_a5/iar/src/tx_thread_context_save.s index 6812175c..493a0965 100644 --- a/ports/cortex_a5/iar/src/tx_thread_context_save.s +++ b/ports/cortex_a5/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_fiq_context_restore.s b/ports/cortex_a5/iar/src/tx_thread_fiq_context_restore.s index 330fe7ae..e040244c 100644 --- a/ports/cortex_a5/iar/src/tx_thread_fiq_context_restore.s +++ b/ports/cortex_a5/iar/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_fiq_context_save.s b/ports/cortex_a5/iar/src/tx_thread_fiq_context_save.s index 915e6336..f1510e0d 100644 --- a/ports/cortex_a5/iar/src/tx_thread_fiq_context_save.s +++ b/ports/cortex_a5/iar/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_fiq_nesting_end.s b/ports/cortex_a5/iar/src/tx_thread_fiq_nesting_end.s index 5e9aa8c1..3b83f0e3 100644 --- a/ports/cortex_a5/iar/src/tx_thread_fiq_nesting_end.s +++ b/ports/cortex_a5/iar/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_fiq_nesting_start.s b/ports/cortex_a5/iar/src/tx_thread_fiq_nesting_start.s index 5d787290..68f9eba6 100644 --- a/ports/cortex_a5/iar/src/tx_thread_fiq_nesting_start.s +++ b/ports/cortex_a5/iar/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_interrupt_control.s b/ports/cortex_a5/iar/src/tx_thread_interrupt_control.s index fcb20db1..d1d8437e 100644 --- a/ports/cortex_a5/iar/src/tx_thread_interrupt_control.s +++ b/ports/cortex_a5/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_interrupt_disable.s b/ports/cortex_a5/iar/src/tx_thread_interrupt_disable.s index e85f4c56..b9a39960 100644 --- a/ports/cortex_a5/iar/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_a5/iar/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_interrupt_restore.s b/ports/cortex_a5/iar/src/tx_thread_interrupt_restore.s index 0c7ec4b9..4b97a6c4 100644 --- a/ports/cortex_a5/iar/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_a5/iar/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_irq_nesting_end.s b/ports/cortex_a5/iar/src/tx_thread_irq_nesting_end.s index 461d8b1d..a5a6f15f 100644 --- a/ports/cortex_a5/iar/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_a5/iar/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_irq_nesting_start.s b/ports/cortex_a5/iar/src/tx_thread_irq_nesting_start.s index 71589b71..8c424974 100644 --- a/ports/cortex_a5/iar/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_a5/iar/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_schedule.s b/ports/cortex_a5/iar/src/tx_thread_schedule.s index a48b5337..7565b57a 100644 --- a/ports/cortex_a5/iar/src/tx_thread_schedule.s +++ b/ports/cortex_a5/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_stack_build.s b/ports/cortex_a5/iar/src/tx_thread_stack_build.s index 092b036d..98039b47 100644 --- a/ports/cortex_a5/iar/src/tx_thread_stack_build.s +++ b/ports/cortex_a5/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_system_return.s b/ports/cortex_a5/iar/src/tx_thread_system_return.s index 6b862ff5..32af6cec 100644 --- a/ports/cortex_a5/iar/src/tx_thread_system_return.s +++ b/ports/cortex_a5/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_thread_vectored_context_save.s b/ports/cortex_a5/iar/src/tx_thread_vectored_context_save.s index 7e25f0a9..f928253d 100644 --- a/ports/cortex_a5/iar/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_a5/iar/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a5/iar/src/tx_timer_interrupt.s b/ports/cortex_a5/iar/src/tx_timer_interrupt.s index 6d4eb857..ddbfda9e 100644 --- a/ports/cortex_a5/iar/src/tx_timer_interrupt.s +++ b/ports/cortex_a5/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a53/ac6/inc/tx_port.h b/ports/cortex_a53/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a53/ac6/inc/tx_port.h +++ b/ports/cortex_a53/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a53/gnu/inc/tx_port.h b/ports/cortex_a53/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a53/gnu/inc/tx_port.h +++ b/ports/cortex_a53/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a55/ac6/inc/tx_port.h b/ports/cortex_a55/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a55/ac6/inc/tx_port.h +++ b/ports/cortex_a55/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a55/gnu/inc/tx_port.h b/ports/cortex_a55/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a55/gnu/inc/tx_port.h +++ b/ports/cortex_a55/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a57/ac6/inc/tx_port.h b/ports/cortex_a57/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a57/ac6/inc/tx_port.h +++ b/ports/cortex_a57/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a57/gnu/inc/tx_port.h b/ports/cortex_a57/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a57/gnu/inc/tx_port.h +++ b/ports/cortex_a57/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a5x/ac6/inc/tx_port.h b/ports/cortex_a5x/ac6/inc/tx_port.h index f52e3912..becdc1ff 100644 --- a/ports/cortex_a5x/ac6/inc/tx_port.h +++ b/ports/cortex_a5x/ac6/inc/tx_port.h @@ -356,7 +356,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5x/ARM Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5x/ARM Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a65/ac6/inc/tx_port.h b/ports/cortex_a65/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a65/ac6/inc/tx_port.h +++ b/ports/cortex_a65/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a65/gnu/inc/tx_port.h b/ports/cortex_a65/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a65/gnu/inc/tx_port.h +++ b/ports/cortex_a65/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a65ae/ac6/inc/tx_port.h b/ports/cortex_a65ae/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a65ae/ac6/inc/tx_port.h +++ b/ports/cortex_a65ae/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a65ae/gnu/inc/tx_port.h b/ports/cortex_a65ae/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a65ae/gnu/inc/tx_port.h +++ b/ports/cortex_a65ae/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a7/ac5/example_build/tx_initialize_low_level.s b/ports/cortex_a7/ac5/example_build/tx_initialize_low_level.s index fa60da80..22770ae1 100644 --- a/ports/cortex_a7/ac5/example_build/tx_initialize_low_level.s +++ b/ports/cortex_a7/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/inc/tx_port.h b/ports/cortex_a7/ac5/inc/tx_port.h index 1e1d7756..a68dd9d7 100644 --- a/ports/cortex_a7/ac5/inc/tx_port.h +++ b/ports/cortex_a7/ac5/inc/tx_port.h @@ -326,7 +326,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A7/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A7/AC5 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a7/ac5/src/tx_thread_context_restore.s b/ports/cortex_a7/ac5/src/tx_thread_context_restore.s index e08b300f..6020c253 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_context_restore.s +++ b/ports/cortex_a7/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_context_save.s b/ports/cortex_a7/ac5/src/tx_thread_context_save.s index be446f3d..3993d9f0 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_context_save.s +++ b/ports/cortex_a7/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_fiq_context_restore.s b/ports/cortex_a7/ac5/src/tx_thread_fiq_context_restore.s index a4df5c30..44233091 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_fiq_context_restore.s +++ b/ports/cortex_a7/ac5/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_fiq_context_save.s b/ports/cortex_a7/ac5/src/tx_thread_fiq_context_save.s index 74a2d89e..eb969c1d 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_fiq_context_save.s +++ b/ports/cortex_a7/ac5/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_fiq_nesting_end.s b/ports/cortex_a7/ac5/src/tx_thread_fiq_nesting_end.s index e443ef08..9062160c 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_fiq_nesting_end.s +++ b/ports/cortex_a7/ac5/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_fiq_nesting_start.s b/ports/cortex_a7/ac5/src/tx_thread_fiq_nesting_start.s index 4cc5e070..a1456bd1 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_fiq_nesting_start.s +++ b/ports/cortex_a7/ac5/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_interrupt_control.s b/ports/cortex_a7/ac5/src/tx_thread_interrupt_control.s index 755e0c3b..0d422e49 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_interrupt_control.s +++ b/ports/cortex_a7/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_interrupt_disable.s b/ports/cortex_a7/ac5/src/tx_thread_interrupt_disable.s index c617626a..5653faf4 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_a7/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_interrupt_restore.s b/ports/cortex_a7/ac5/src/tx_thread_interrupt_restore.s index 8953d67e..e9f15cc6 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_a7/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_irq_nesting_end.s b/ports/cortex_a7/ac5/src/tx_thread_irq_nesting_end.s index 0315cfe7..f458cb21 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_a7/ac5/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_irq_nesting_start.s b/ports/cortex_a7/ac5/src/tx_thread_irq_nesting_start.s index 33c6abed..2f1814f8 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_a7/ac5/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_schedule.s b/ports/cortex_a7/ac5/src/tx_thread_schedule.s index b713b482..0f10a537 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_schedule.s +++ b/ports/cortex_a7/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_stack_build.s b/ports/cortex_a7/ac5/src/tx_thread_stack_build.s index 56e2d66b..a868d826 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_stack_build.s +++ b/ports/cortex_a7/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_system_return.s b/ports/cortex_a7/ac5/src/tx_thread_system_return.s index 3af99682..01e93435 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_system_return.s +++ b/ports/cortex_a7/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_thread_vectored_context_save.s b/ports/cortex_a7/ac5/src/tx_thread_vectored_context_save.s index a4937e33..1e9a2f82 100644 --- a/ports/cortex_a7/ac5/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_a7/ac5/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac5/src/tx_timer_interrupt.s b/ports/cortex_a7/ac5/src/tx_timer_interrupt.s index f1007c37..ce94e6e0 100644 --- a/ports/cortex_a7/ac5/src/tx_timer_interrupt.s +++ b/ports/cortex_a7/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/ac6/inc/tx_port.h b/ports/cortex_a7/ac6/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a7/ac6/inc/tx_port.h +++ b/ports/cortex_a7/ac6/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a7/ghs/inc/tx_port.h b/ports/cortex_a7/ghs/inc/tx_port.h index 46642fb8..ee13c997 100644 --- a/ports/cortex_a7/ghs/inc/tx_port.h +++ b/ports/cortex_a7/ghs/inc/tx_port.h @@ -394,7 +394,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A7/Green Hills Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A7/Green Hills Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a7/gnu/inc/tx_port.h b/ports/cortex_a7/gnu/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a7/gnu/inc/tx_port.h +++ b/ports/cortex_a7/gnu/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a7/iar/example_build/tx_initialize_low_level.s b/ports/cortex_a7/iar/example_build/tx_initialize_low_level.s index e1f286ee..c30a14aa 100644 --- a/ports/cortex_a7/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_a7/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/inc/tx_port.h b/ports/cortex_a7/iar/inc/tx_port.h index 6507a84b..3f1e8f9e 100644 --- a/ports/cortex_a7/iar/inc/tx_port.h +++ b/ports/cortex_a7/iar/inc/tx_port.h @@ -382,7 +382,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A7/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A7/IAR Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a7/iar/src/tx_thread_context_restore.s b/ports/cortex_a7/iar/src/tx_thread_context_restore.s index f27d0607..0b3814a8 100644 --- a/ports/cortex_a7/iar/src/tx_thread_context_restore.s +++ b/ports/cortex_a7/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_context_save.s b/ports/cortex_a7/iar/src/tx_thread_context_save.s index 7bf78318..dfbe7b7b 100644 --- a/ports/cortex_a7/iar/src/tx_thread_context_save.s +++ b/ports/cortex_a7/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_fiq_context_restore.s b/ports/cortex_a7/iar/src/tx_thread_fiq_context_restore.s index b1de906e..af8f462b 100644 --- a/ports/cortex_a7/iar/src/tx_thread_fiq_context_restore.s +++ b/ports/cortex_a7/iar/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_fiq_context_save.s b/ports/cortex_a7/iar/src/tx_thread_fiq_context_save.s index a6585705..e43fdf76 100644 --- a/ports/cortex_a7/iar/src/tx_thread_fiq_context_save.s +++ b/ports/cortex_a7/iar/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_fiq_nesting_end.s b/ports/cortex_a7/iar/src/tx_thread_fiq_nesting_end.s index 884654c0..155a79b6 100644 --- a/ports/cortex_a7/iar/src/tx_thread_fiq_nesting_end.s +++ b/ports/cortex_a7/iar/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_fiq_nesting_start.s b/ports/cortex_a7/iar/src/tx_thread_fiq_nesting_start.s index 03562211..8b82e8eb 100644 --- a/ports/cortex_a7/iar/src/tx_thread_fiq_nesting_start.s +++ b/ports/cortex_a7/iar/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_interrupt_control.s b/ports/cortex_a7/iar/src/tx_thread_interrupt_control.s index 7220eddc..e4618a59 100644 --- a/ports/cortex_a7/iar/src/tx_thread_interrupt_control.s +++ b/ports/cortex_a7/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_interrupt_disable.s b/ports/cortex_a7/iar/src/tx_thread_interrupt_disable.s index 2a920f9d..43c7952d 100644 --- a/ports/cortex_a7/iar/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_a7/iar/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_interrupt_restore.s b/ports/cortex_a7/iar/src/tx_thread_interrupt_restore.s index ab2d77cb..1893ce17 100644 --- a/ports/cortex_a7/iar/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_a7/iar/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_irq_nesting_end.s b/ports/cortex_a7/iar/src/tx_thread_irq_nesting_end.s index 96f77867..5de63f0d 100644 --- a/ports/cortex_a7/iar/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_a7/iar/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_irq_nesting_start.s b/ports/cortex_a7/iar/src/tx_thread_irq_nesting_start.s index dc6100d3..bf465f81 100644 --- a/ports/cortex_a7/iar/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_a7/iar/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_schedule.s b/ports/cortex_a7/iar/src/tx_thread_schedule.s index 87d20495..985da38e 100644 --- a/ports/cortex_a7/iar/src/tx_thread_schedule.s +++ b/ports/cortex_a7/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_stack_build.s b/ports/cortex_a7/iar/src/tx_thread_stack_build.s index 4c02c356..fc4e5870 100644 --- a/ports/cortex_a7/iar/src/tx_thread_stack_build.s +++ b/ports/cortex_a7/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_system_return.s b/ports/cortex_a7/iar/src/tx_thread_system_return.s index 7c127ed3..c35bc5f6 100644 --- a/ports/cortex_a7/iar/src/tx_thread_system_return.s +++ b/ports/cortex_a7/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_thread_vectored_context_save.s b/ports/cortex_a7/iar/src/tx_thread_vectored_context_save.s index bbf6d686..da8794f7 100644 --- a/ports/cortex_a7/iar/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_a7/iar/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a7/iar/src/tx_timer_interrupt.s b/ports/cortex_a7/iar/src/tx_timer_interrupt.s index 546b5fcf..da4b2f3f 100644 --- a/ports/cortex_a7/iar/src/tx_timer_interrupt.s +++ b/ports/cortex_a7/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a72/ac6/inc/tx_port.h b/ports/cortex_a72/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a72/ac6/inc/tx_port.h +++ b/ports/cortex_a72/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a72/gnu/inc/tx_port.h b/ports/cortex_a72/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a72/gnu/inc/tx_port.h +++ b/ports/cortex_a72/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a73/ac6/inc/tx_port.h b/ports/cortex_a73/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a73/ac6/inc/tx_port.h +++ b/ports/cortex_a73/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a73/gnu/inc/tx_port.h b/ports/cortex_a73/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a73/gnu/inc/tx_port.h +++ b/ports/cortex_a73/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a75/ac6/inc/tx_port.h b/ports/cortex_a75/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a75/ac6/inc/tx_port.h +++ b/ports/cortex_a75/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a75/gnu/inc/tx_port.h b/ports/cortex_a75/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a75/gnu/inc/tx_port.h +++ b/ports/cortex_a75/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a76/ac6/inc/tx_port.h b/ports/cortex_a76/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a76/ac6/inc/tx_port.h +++ b/ports/cortex_a76/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a76/gnu/inc/tx_port.h b/ports/cortex_a76/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a76/gnu/inc/tx_port.h +++ b/ports/cortex_a76/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a76ae/ac6/inc/tx_port.h b/ports/cortex_a76ae/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a76ae/ac6/inc/tx_port.h +++ b/ports/cortex_a76ae/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a76ae/gnu/inc/tx_port.h b/ports/cortex_a76ae/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a76ae/gnu/inc/tx_port.h +++ b/ports/cortex_a76ae/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a77/ac6/inc/tx_port.h b/ports/cortex_a77/ac6/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a77/ac6/inc/tx_port.h +++ b/ports/cortex_a77/ac6/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a77/gnu/inc/tx_port.h b/ports/cortex_a77/gnu/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports/cortex_a77/gnu/inc/tx_port.h +++ b/ports/cortex_a77/gnu/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a8/ac5/example_build/tx_initialize_low_level.s b/ports/cortex_a8/ac5/example_build/tx_initialize_low_level.s index 4eda9014..ddf3e8bb 100644 --- a/ports/cortex_a8/ac5/example_build/tx_initialize_low_level.s +++ b/ports/cortex_a8/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/inc/tx_port.h b/ports/cortex_a8/ac5/inc/tx_port.h index 29f2fbe5..24c52a6c 100644 --- a/ports/cortex_a8/ac5/inc/tx_port.h +++ b/ports/cortex_a8/ac5/inc/tx_port.h @@ -326,7 +326,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A8/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A8/AC5 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a8/ac5/src/tx_thread_context_restore.s b/ports/cortex_a8/ac5/src/tx_thread_context_restore.s index 884457af..d2cbdc19 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_context_restore.s +++ b/ports/cortex_a8/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_context_save.s b/ports/cortex_a8/ac5/src/tx_thread_context_save.s index 21ecf616..6c1d90c8 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_context_save.s +++ b/ports/cortex_a8/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_fiq_context_restore.s b/ports/cortex_a8/ac5/src/tx_thread_fiq_context_restore.s index 15c640a0..9fb18339 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_fiq_context_restore.s +++ b/ports/cortex_a8/ac5/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_fiq_context_save.s b/ports/cortex_a8/ac5/src/tx_thread_fiq_context_save.s index dc72007f..7ba4eee3 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_fiq_context_save.s +++ b/ports/cortex_a8/ac5/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_fiq_nesting_end.s b/ports/cortex_a8/ac5/src/tx_thread_fiq_nesting_end.s index b6a7965a..0089d6bd 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_fiq_nesting_end.s +++ b/ports/cortex_a8/ac5/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_fiq_nesting_start.s b/ports/cortex_a8/ac5/src/tx_thread_fiq_nesting_start.s index 43d2612c..34b3d0a9 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_fiq_nesting_start.s +++ b/ports/cortex_a8/ac5/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_interrupt_control.s b/ports/cortex_a8/ac5/src/tx_thread_interrupt_control.s index 50e53098..8339da10 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_interrupt_control.s +++ b/ports/cortex_a8/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_interrupt_disable.s b/ports/cortex_a8/ac5/src/tx_thread_interrupt_disable.s index 97426009..72586e25 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_a8/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_interrupt_restore.s b/ports/cortex_a8/ac5/src/tx_thread_interrupt_restore.s index 7414975a..630a5dc9 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_a8/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_irq_nesting_end.s b/ports/cortex_a8/ac5/src/tx_thread_irq_nesting_end.s index ccb045fe..c3ff143f 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_a8/ac5/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_irq_nesting_start.s b/ports/cortex_a8/ac5/src/tx_thread_irq_nesting_start.s index e5d175a1..67f48378 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_a8/ac5/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_schedule.s b/ports/cortex_a8/ac5/src/tx_thread_schedule.s index 77c6ce2b..f5982192 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_schedule.s +++ b/ports/cortex_a8/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_stack_build.s b/ports/cortex_a8/ac5/src/tx_thread_stack_build.s index 76b4f9f5..18f16095 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_stack_build.s +++ b/ports/cortex_a8/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_system_return.s b/ports/cortex_a8/ac5/src/tx_thread_system_return.s index 5dada602..62155944 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_system_return.s +++ b/ports/cortex_a8/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_thread_vectored_context_save.s b/ports/cortex_a8/ac5/src/tx_thread_vectored_context_save.s index db358223..e7d10bfb 100644 --- a/ports/cortex_a8/ac5/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_a8/ac5/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac5/src/tx_timer_interrupt.s b/ports/cortex_a8/ac5/src/tx_timer_interrupt.s index abed4903..41b21a33 100644 --- a/ports/cortex_a8/ac5/src/tx_timer_interrupt.s +++ b/ports/cortex_a8/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/ac6/inc/tx_port.h b/ports/cortex_a8/ac6/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a8/ac6/inc/tx_port.h +++ b/ports/cortex_a8/ac6/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a8/ghs/inc/tx_port.h b/ports/cortex_a8/ghs/inc/tx_port.h index 5ed96ac0..c80497a8 100644 --- a/ports/cortex_a8/ghs/inc/tx_port.h +++ b/ports/cortex_a8/ghs/inc/tx_port.h @@ -394,7 +394,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A8/Green Hills Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A8/Green Hills Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a8/gnu/inc/tx_port.h b/ports/cortex_a8/gnu/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a8/gnu/inc/tx_port.h +++ b/ports/cortex_a8/gnu/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a8/iar/example_build/tx_initialize_low_level.s b/ports/cortex_a8/iar/example_build/tx_initialize_low_level.s index 272dba6b..f6ed88d7 100644 --- a/ports/cortex_a8/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_a8/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/inc/tx_port.h b/ports/cortex_a8/iar/inc/tx_port.h index d01ab7f4..827c0cdf 100644 --- a/ports/cortex_a8/iar/inc/tx_port.h +++ b/ports/cortex_a8/iar/inc/tx_port.h @@ -383,7 +383,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A8/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A8/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_a8/iar/src/tx_thread_context_restore.s b/ports/cortex_a8/iar/src/tx_thread_context_restore.s index 50c40de9..b189af01 100644 --- a/ports/cortex_a8/iar/src/tx_thread_context_restore.s +++ b/ports/cortex_a8/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_context_save.s b/ports/cortex_a8/iar/src/tx_thread_context_save.s index 78434283..cf9c22eb 100644 --- a/ports/cortex_a8/iar/src/tx_thread_context_save.s +++ b/ports/cortex_a8/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_fiq_context_restore.s b/ports/cortex_a8/iar/src/tx_thread_fiq_context_restore.s index c5595353..723d0ba5 100644 --- a/ports/cortex_a8/iar/src/tx_thread_fiq_context_restore.s +++ b/ports/cortex_a8/iar/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_fiq_context_save.s b/ports/cortex_a8/iar/src/tx_thread_fiq_context_save.s index 0ba193d0..a9fa3890 100644 --- a/ports/cortex_a8/iar/src/tx_thread_fiq_context_save.s +++ b/ports/cortex_a8/iar/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_fiq_nesting_end.s b/ports/cortex_a8/iar/src/tx_thread_fiq_nesting_end.s index 1ac7fa81..ea0855c5 100644 --- a/ports/cortex_a8/iar/src/tx_thread_fiq_nesting_end.s +++ b/ports/cortex_a8/iar/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_fiq_nesting_start.s b/ports/cortex_a8/iar/src/tx_thread_fiq_nesting_start.s index f91c4ba9..76fe6bb5 100644 --- a/ports/cortex_a8/iar/src/tx_thread_fiq_nesting_start.s +++ b/ports/cortex_a8/iar/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_interrupt_control.s b/ports/cortex_a8/iar/src/tx_thread_interrupt_control.s index 02501d90..c1a42e43 100644 --- a/ports/cortex_a8/iar/src/tx_thread_interrupt_control.s +++ b/ports/cortex_a8/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_interrupt_disable.s b/ports/cortex_a8/iar/src/tx_thread_interrupt_disable.s index 3aa06339..15f9c425 100644 --- a/ports/cortex_a8/iar/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_a8/iar/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_interrupt_restore.s b/ports/cortex_a8/iar/src/tx_thread_interrupt_restore.s index 7fcb3f2e..90fc68e9 100644 --- a/ports/cortex_a8/iar/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_a8/iar/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_irq_nesting_end.s b/ports/cortex_a8/iar/src/tx_thread_irq_nesting_end.s index e01f20b9..b0c927b2 100644 --- a/ports/cortex_a8/iar/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_a8/iar/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_irq_nesting_start.s b/ports/cortex_a8/iar/src/tx_thread_irq_nesting_start.s index d6bf39ad..0b9e4a77 100644 --- a/ports/cortex_a8/iar/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_a8/iar/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_schedule.s b/ports/cortex_a8/iar/src/tx_thread_schedule.s index 767a4f01..0688152e 100644 --- a/ports/cortex_a8/iar/src/tx_thread_schedule.s +++ b/ports/cortex_a8/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_stack_build.s b/ports/cortex_a8/iar/src/tx_thread_stack_build.s index 4931a209..962f7813 100644 --- a/ports/cortex_a8/iar/src/tx_thread_stack_build.s +++ b/ports/cortex_a8/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_system_return.s b/ports/cortex_a8/iar/src/tx_thread_system_return.s index f2d3bdab..13e04f6c 100644 --- a/ports/cortex_a8/iar/src/tx_thread_system_return.s +++ b/ports/cortex_a8/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_thread_vectored_context_save.s b/ports/cortex_a8/iar/src/tx_thread_vectored_context_save.s index ab412993..2e1ac10c 100644 --- a/ports/cortex_a8/iar/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_a8/iar/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a8/iar/src/tx_timer_interrupt.s b/ports/cortex_a8/iar/src/tx_timer_interrupt.s index ccd000f0..49d4219b 100644 --- a/ports/cortex_a8/iar/src/tx_timer_interrupt.s +++ b/ports/cortex_a8/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/example_build/tx_initialize_low_level.s b/ports/cortex_a9/ac5/example_build/tx_initialize_low_level.s index 9931e66f..a15994e1 100644 --- a/ports/cortex_a9/ac5/example_build/tx_initialize_low_level.s +++ b/ports/cortex_a9/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/inc/tx_port.h b/ports/cortex_a9/ac5/inc/tx_port.h index b20ebb47..d6980a5c 100644 --- a/ports/cortex_a9/ac5/inc/tx_port.h +++ b/ports/cortex_a9/ac5/inc/tx_port.h @@ -326,7 +326,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A9/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A9/AC5 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a9/ac5/src/tx_thread_context_restore.s b/ports/cortex_a9/ac5/src/tx_thread_context_restore.s index c25c281a..49add8f8 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_context_restore.s +++ b/ports/cortex_a9/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_context_save.s b/ports/cortex_a9/ac5/src/tx_thread_context_save.s index c77b89e7..2ccb6ba9 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_context_save.s +++ b/ports/cortex_a9/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_fiq_context_restore.s b/ports/cortex_a9/ac5/src/tx_thread_fiq_context_restore.s index d2537777..3069b0de 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_fiq_context_restore.s +++ b/ports/cortex_a9/ac5/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_fiq_context_save.s b/ports/cortex_a9/ac5/src/tx_thread_fiq_context_save.s index 4b102178..7faeb3c8 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_fiq_context_save.s +++ b/ports/cortex_a9/ac5/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_fiq_nesting_end.s b/ports/cortex_a9/ac5/src/tx_thread_fiq_nesting_end.s index bf2b52c0..43ae1483 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_fiq_nesting_end.s +++ b/ports/cortex_a9/ac5/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_fiq_nesting_start.s b/ports/cortex_a9/ac5/src/tx_thread_fiq_nesting_start.s index 27a06a24..876f19a5 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_fiq_nesting_start.s +++ b/ports/cortex_a9/ac5/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_interrupt_control.s b/ports/cortex_a9/ac5/src/tx_thread_interrupt_control.s index 63d8c238..eb141f70 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_interrupt_control.s +++ b/ports/cortex_a9/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_interrupt_disable.s b/ports/cortex_a9/ac5/src/tx_thread_interrupt_disable.s index 92f67f5a..f3014ace 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_a9/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_interrupt_restore.s b/ports/cortex_a9/ac5/src/tx_thread_interrupt_restore.s index d3bbd17d..b00872b3 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_a9/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_irq_nesting_end.s b/ports/cortex_a9/ac5/src/tx_thread_irq_nesting_end.s index dd41ea40..4ef900fa 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_a9/ac5/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_irq_nesting_start.s b/ports/cortex_a9/ac5/src/tx_thread_irq_nesting_start.s index 6f58dc7d..1f9dfc8d 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_a9/ac5/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_schedule.s b/ports/cortex_a9/ac5/src/tx_thread_schedule.s index dde0517a..664bc10e 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_schedule.s +++ b/ports/cortex_a9/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_stack_build.s b/ports/cortex_a9/ac5/src/tx_thread_stack_build.s index 21c7b7f4..f10d9769 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_stack_build.s +++ b/ports/cortex_a9/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_system_return.s b/ports/cortex_a9/ac5/src/tx_thread_system_return.s index 80ded617..bc6f3087 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_system_return.s +++ b/ports/cortex_a9/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_thread_vectored_context_save.s b/ports/cortex_a9/ac5/src/tx_thread_vectored_context_save.s index 0c890b5d..e2a5a8c4 100644 --- a/ports/cortex_a9/ac5/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_a9/ac5/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac5/src/tx_timer_interrupt.s b/ports/cortex_a9/ac5/src/tx_timer_interrupt.s index 0201c0c8..05e9fdda 100644 --- a/ports/cortex_a9/ac5/src/tx_timer_interrupt.s +++ b/ports/cortex_a9/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/ac6/inc/tx_port.h b/ports/cortex_a9/ac6/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a9/ac6/inc/tx_port.h +++ b/ports/cortex_a9/ac6/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a9/ghs/inc/tx_port.h b/ports/cortex_a9/ghs/inc/tx_port.h index 565dab62..ece52496 100644 --- a/ports/cortex_a9/ghs/inc/tx_port.h +++ b/ports/cortex_a9/ghs/inc/tx_port.h @@ -394,7 +394,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A9/Green Hills Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A9/Green Hills Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a9/gnu/inc/tx_port.h b/ports/cortex_a9/gnu/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports/cortex_a9/gnu/inc/tx_port.h +++ b/ports/cortex_a9/gnu/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_a9/iar/example_build/tx_initialize_low_level.s b/ports/cortex_a9/iar/example_build/tx_initialize_low_level.s index 2c41ad6d..5820192d 100644 --- a/ports/cortex_a9/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_a9/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/inc/tx_port.h b/ports/cortex_a9/iar/inc/tx_port.h index acf8ebf4..5cc6cb5b 100644 --- a/ports/cortex_a9/iar/inc/tx_port.h +++ b/ports/cortex_a9/iar/inc/tx_port.h @@ -384,7 +384,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A9/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A9/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_a9/iar/src/tx_thread_context_restore.s b/ports/cortex_a9/iar/src/tx_thread_context_restore.s index 24baa2a4..e063a2b1 100644 --- a/ports/cortex_a9/iar/src/tx_thread_context_restore.s +++ b/ports/cortex_a9/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_context_save.s b/ports/cortex_a9/iar/src/tx_thread_context_save.s index d3dd786c..75045787 100644 --- a/ports/cortex_a9/iar/src/tx_thread_context_save.s +++ b/ports/cortex_a9/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_fiq_context_restore.s b/ports/cortex_a9/iar/src/tx_thread_fiq_context_restore.s index b3c05c84..999febae 100644 --- a/ports/cortex_a9/iar/src/tx_thread_fiq_context_restore.s +++ b/ports/cortex_a9/iar/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_fiq_context_save.s b/ports/cortex_a9/iar/src/tx_thread_fiq_context_save.s index 07a59c28..7f974a72 100644 --- a/ports/cortex_a9/iar/src/tx_thread_fiq_context_save.s +++ b/ports/cortex_a9/iar/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_fiq_nesting_end.s b/ports/cortex_a9/iar/src/tx_thread_fiq_nesting_end.s index 24d71e7a..27221a2b 100644 --- a/ports/cortex_a9/iar/src/tx_thread_fiq_nesting_end.s +++ b/ports/cortex_a9/iar/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_fiq_nesting_start.s b/ports/cortex_a9/iar/src/tx_thread_fiq_nesting_start.s index 1d245585..af3d7786 100644 --- a/ports/cortex_a9/iar/src/tx_thread_fiq_nesting_start.s +++ b/ports/cortex_a9/iar/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_interrupt_control.s b/ports/cortex_a9/iar/src/tx_thread_interrupt_control.s index a8ed33d1..75d7279b 100644 --- a/ports/cortex_a9/iar/src/tx_thread_interrupt_control.s +++ b/ports/cortex_a9/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_interrupt_disable.s b/ports/cortex_a9/iar/src/tx_thread_interrupt_disable.s index ad7d4e64..ce8e51cf 100644 --- a/ports/cortex_a9/iar/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_a9/iar/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_interrupt_restore.s b/ports/cortex_a9/iar/src/tx_thread_interrupt_restore.s index 0990dd01..bad3cf79 100644 --- a/ports/cortex_a9/iar/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_a9/iar/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_irq_nesting_end.s b/ports/cortex_a9/iar/src/tx_thread_irq_nesting_end.s index b5b45be5..a3e6d819 100644 --- a/ports/cortex_a9/iar/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_a9/iar/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_irq_nesting_start.s b/ports/cortex_a9/iar/src/tx_thread_irq_nesting_start.s index 141bdd36..ed787d24 100644 --- a/ports/cortex_a9/iar/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_a9/iar/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_schedule.s b/ports/cortex_a9/iar/src/tx_thread_schedule.s index 6b3fce37..8f221f16 100644 --- a/ports/cortex_a9/iar/src/tx_thread_schedule.s +++ b/ports/cortex_a9/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_stack_build.s b/ports/cortex_a9/iar/src/tx_thread_stack_build.s index 07a396c5..8b153c14 100644 --- a/ports/cortex_a9/iar/src/tx_thread_stack_build.s +++ b/ports/cortex_a9/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_system_return.s b/ports/cortex_a9/iar/src/tx_thread_system_return.s index f3c7d3b3..d8d1b096 100644 --- a/ports/cortex_a9/iar/src/tx_thread_system_return.s +++ b/ports/cortex_a9/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_thread_vectored_context_save.s b/ports/cortex_a9/iar/src/tx_thread_vectored_context_save.s index 6b790467..76d9b155 100644 --- a/ports/cortex_a9/iar/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_a9/iar/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_a9/iar/src/tx_timer_interrupt.s b/ports/cortex_a9/iar/src/tx_timer_interrupt.s index a90138aa..86c6960e 100644 --- a/ports/cortex_a9/iar/src/tx_timer_interrupt.s +++ b/ports/cortex_a9/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/ac5/example_build/tx_initialize_low_level.s b/ports/cortex_m0/ac5/example_build/tx_initialize_low_level.s index 834d5ac5..f1a83341 100644 --- a/ports/cortex_m0/ac5/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m0/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/ac5/inc/tx_port.h b/ports/cortex_m0/ac5/inc/tx_port.h index cb9c1080..4b0c16eb 100644 --- a/ports/cortex_m0/ac5/inc/tx_port.h +++ b/ports/cortex_m0/ac5/inc/tx_port.h @@ -323,7 +323,7 @@ unsigned int was_masked; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0/AC5 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m0/ac5/src/tx_thread_context_restore.s b/ports/cortex_m0/ac5/src/tx_thread_context_restore.s index fefc2e4b..673ba8c6 100644 --- a/ports/cortex_m0/ac5/src/tx_thread_context_restore.s +++ b/ports/cortex_m0/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/ac5/src/tx_thread_context_save.s b/ports/cortex_m0/ac5/src/tx_thread_context_save.s index 39f494c6..df7d1721 100644 --- a/ports/cortex_m0/ac5/src/tx_thread_context_save.s +++ b/ports/cortex_m0/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/ac5/src/tx_thread_interrupt_control.s b/ports/cortex_m0/ac5/src/tx_thread_interrupt_control.s index e605de0c..a8504791 100644 --- a/ports/cortex_m0/ac5/src/tx_thread_interrupt_control.s +++ b/ports/cortex_m0/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/ac5/src/tx_thread_interrupt_disable.s b/ports/cortex_m0/ac5/src/tx_thread_interrupt_disable.s index aca71d4c..aac316ea 100644 --- a/ports/cortex_m0/ac5/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_m0/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/ac5/src/tx_thread_interrupt_restore.s b/ports/cortex_m0/ac5/src/tx_thread_interrupt_restore.s index 3cc233bb..b94b9e7b 100644 --- a/ports/cortex_m0/ac5/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_m0/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/ac5/src/tx_thread_schedule.s b/ports/cortex_m0/ac5/src/tx_thread_schedule.s index dddac18a..06f03cca 100644 --- a/ports/cortex_m0/ac5/src/tx_thread_schedule.s +++ b/ports/cortex_m0/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/ac5/src/tx_thread_stack_build.s b/ports/cortex_m0/ac5/src/tx_thread_stack_build.s index add15232..8324238a 100644 --- a/ports/cortex_m0/ac5/src/tx_thread_stack_build.s +++ b/ports/cortex_m0/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/ac5/src/tx_thread_system_return.s b/ports/cortex_m0/ac5/src/tx_thread_system_return.s index 2ee69351..d37623fc 100644 --- a/ports/cortex_m0/ac5/src/tx_thread_system_return.s +++ b/ports/cortex_m0/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/ac5/src/tx_timer_interrupt.s b/ports/cortex_m0/ac5/src/tx_timer_interrupt.s index d5989ec4..e6ebbc76 100644 --- a/ports/cortex_m0/ac5/src/tx_timer_interrupt.s +++ b/ports/cortex_m0/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/ac6/example_build/sample_threadx/tx_initialize_low_level.S b/ports/cortex_m0/ac6/example_build/sample_threadx/tx_initialize_low_level.S index cf8aa165..5786976d 100644 --- a/ports/cortex_m0/ac6/example_build/sample_threadx/tx_initialize_low_level.S +++ b/ports/cortex_m0/ac6/example_build/sample_threadx/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/ac6/inc/tx_port.h b/ports/cortex_m0/ac6/inc/tx_port.h index 8ec63d34..6eedfd3e 100644 --- a/ports/cortex_m0/ac6/inc/tx_port.h +++ b/ports/cortex_m0/ac6/inc/tx_port.h @@ -366,7 +366,7 @@ unsigned int interrupt_save; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0/AC6 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_m0/ac6/src/tx_thread_context_restore.S b/ports/cortex_m0/ac6/src/tx_thread_context_restore.S index e4bce332..a2aedaf0 100644 --- a/ports/cortex_m0/ac6/src/tx_thread_context_restore.S +++ b/ports/cortex_m0/ac6/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/ac6/src/tx_thread_context_save.S b/ports/cortex_m0/ac6/src/tx_thread_context_save.S index 65242599..0a00a628 100644 --- a/ports/cortex_m0/ac6/src/tx_thread_context_save.S +++ b/ports/cortex_m0/ac6/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/ac6/src/tx_thread_interrupt_control.S b/ports/cortex_m0/ac6/src/tx_thread_interrupt_control.S index 7eca1a3d..766b740e 100644 --- a/ports/cortex_m0/ac6/src/tx_thread_interrupt_control.S +++ b/ports/cortex_m0/ac6/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @/**************************************************************************/ diff --git a/ports/cortex_m0/ac6/src/tx_thread_interrupt_disable.S b/ports/cortex_m0/ac6/src/tx_thread_interrupt_disable.S index f9805825..7aa32ba8 100644 --- a/ports/cortex_m0/ac6/src/tx_thread_interrupt_disable.S +++ b/ports/cortex_m0/ac6/src/tx_thread_interrupt_disable.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @/**************************************************************************/ diff --git a/ports/cortex_m0/ac6/src/tx_thread_interrupt_restore.S b/ports/cortex_m0/ac6/src/tx_thread_interrupt_restore.S index 5b316308..5e61de27 100644 --- a/ports/cortex_m0/ac6/src/tx_thread_interrupt_restore.S +++ b/ports/cortex_m0/ac6/src/tx_thread_interrupt_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @/**************************************************************************/ diff --git a/ports/cortex_m0/ac6/src/tx_thread_schedule.S b/ports/cortex_m0/ac6/src/tx_thread_schedule.S index 5cd94fe8..0bb81904 100644 --- a/ports/cortex_m0/ac6/src/tx_thread_schedule.S +++ b/ports/cortex_m0/ac6/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/ac6/src/tx_thread_stack_build.S b/ports/cortex_m0/ac6/src/tx_thread_stack_build.S index 0f986d1c..6a757530 100644 --- a/ports/cortex_m0/ac6/src/tx_thread_stack_build.S +++ b/ports/cortex_m0/ac6/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/ac6/src/tx_thread_system_return.S b/ports/cortex_m0/ac6/src/tx_thread_system_return.S index d8400272..009b7210 100644 --- a/ports/cortex_m0/ac6/src/tx_thread_system_return.S +++ b/ports/cortex_m0/ac6/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/ac6/src/tx_timer_interrupt.S b/ports/cortex_m0/ac6/src/tx_timer_interrupt.S index 49269a1d..f45ebfde 100644 --- a/ports/cortex_m0/ac6/src/tx_timer_interrupt.S +++ b/ports/cortex_m0/ac6/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/gnu/example_build/tx_initialize_low_level.S b/ports/cortex_m0/gnu/example_build/tx_initialize_low_level.S index dcdce89a..fe760077 100644 --- a/ports/cortex_m0/gnu/example_build/tx_initialize_low_level.S +++ b/ports/cortex_m0/gnu/example_build/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/gnu/inc/tx_port.h b/ports/cortex_m0/gnu/inc/tx_port.h index 080426f2..fff58dc2 100644 --- a/ports/cortex_m0/gnu/inc/tx_port.h +++ b/ports/cortex_m0/gnu/inc/tx_port.h @@ -368,7 +368,7 @@ unsigned int interrupt_save; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_m0/gnu/src/tx_thread_context_restore.S b/ports/cortex_m0/gnu/src/tx_thread_context_restore.S index de6b567e..8222f9de 100644 --- a/ports/cortex_m0/gnu/src/tx_thread_context_restore.S +++ b/ports/cortex_m0/gnu/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/gnu/src/tx_thread_context_save.S b/ports/cortex_m0/gnu/src/tx_thread_context_save.S index 3f6d6d7d..c7c6a142 100644 --- a/ports/cortex_m0/gnu/src/tx_thread_context_save.S +++ b/ports/cortex_m0/gnu/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/gnu/src/tx_thread_interrupt_control.S b/ports/cortex_m0/gnu/src/tx_thread_interrupt_control.S index aef65a7b..3fc8cc23 100644 --- a/ports/cortex_m0/gnu/src/tx_thread_interrupt_control.S +++ b/ports/cortex_m0/gnu/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @/**************************************************************************/ diff --git a/ports/cortex_m0/gnu/src/tx_thread_interrupt_disable.S b/ports/cortex_m0/gnu/src/tx_thread_interrupt_disable.S index 0fa8f3e3..fd3a0ae8 100644 --- a/ports/cortex_m0/gnu/src/tx_thread_interrupt_disable.S +++ b/ports/cortex_m0/gnu/src/tx_thread_interrupt_disable.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @/**************************************************************************/ diff --git a/ports/cortex_m0/gnu/src/tx_thread_interrupt_restore.S b/ports/cortex_m0/gnu/src/tx_thread_interrupt_restore.S index 52d1aec8..41c5dd21 100644 --- a/ports/cortex_m0/gnu/src/tx_thread_interrupt_restore.S +++ b/ports/cortex_m0/gnu/src/tx_thread_interrupt_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @/**************************************************************************/ diff --git a/ports/cortex_m0/gnu/src/tx_thread_schedule.S b/ports/cortex_m0/gnu/src/tx_thread_schedule.S index 0761f232..46d9f8ba 100644 --- a/ports/cortex_m0/gnu/src/tx_thread_schedule.S +++ b/ports/cortex_m0/gnu/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/gnu/src/tx_thread_stack_build.S b/ports/cortex_m0/gnu/src/tx_thread_stack_build.S index 81701835..fee960e3 100644 --- a/ports/cortex_m0/gnu/src/tx_thread_stack_build.S +++ b/ports/cortex_m0/gnu/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/gnu/src/tx_thread_system_return.S b/ports/cortex_m0/gnu/src/tx_thread_system_return.S index a81a95e8..cef9159f 100644 --- a/ports/cortex_m0/gnu/src/tx_thread_system_return.S +++ b/ports/cortex_m0/gnu/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/gnu/src/tx_timer_interrupt.S b/ports/cortex_m0/gnu/src/tx_timer_interrupt.S index 3bb3c84e..3b64e055 100644 --- a/ports/cortex_m0/gnu/src/tx_timer_interrupt.S +++ b/ports/cortex_m0/gnu/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m0/iar/example_build/tx_initialize_low_level.s b/ports/cortex_m0/iar/example_build/tx_initialize_low_level.s index d98aa2db..19469eae 100644 --- a/ports/cortex_m0/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m0/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/iar/inc/tx_port.h b/ports/cortex_m0/iar/inc/tx_port.h index 925677e6..43896ee8 100644 --- a/ports/cortex_m0/iar/inc/tx_port.h +++ b/ports/cortex_m0/iar/inc/tx_port.h @@ -349,7 +349,7 @@ __istate_t interrupt_save; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m0/iar/src/tx_thread_context_restore.s b/ports/cortex_m0/iar/src/tx_thread_context_restore.s index e1725ae6..b2fb8162 100644 --- a/ports/cortex_m0/iar/src/tx_thread_context_restore.s +++ b/ports/cortex_m0/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/iar/src/tx_thread_context_save.s b/ports/cortex_m0/iar/src/tx_thread_context_save.s index 394a507c..9463b229 100644 --- a/ports/cortex_m0/iar/src/tx_thread_context_save.s +++ b/ports/cortex_m0/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/iar/src/tx_thread_interrupt_control.s b/ports/cortex_m0/iar/src/tx_thread_interrupt_control.s index e00134e5..01fbb194 100644 --- a/ports/cortex_m0/iar/src/tx_thread_interrupt_control.s +++ b/ports/cortex_m0/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/iar/src/tx_thread_interrupt_disable.s b/ports/cortex_m0/iar/src/tx_thread_interrupt_disable.s index 03233cde..f64aff1f 100644 --- a/ports/cortex_m0/iar/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_m0/iar/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/iar/src/tx_thread_interrupt_restore.s b/ports/cortex_m0/iar/src/tx_thread_interrupt_restore.s index 3c495b40..b08efc47 100644 --- a/ports/cortex_m0/iar/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_m0/iar/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/iar/src/tx_thread_schedule.s b/ports/cortex_m0/iar/src/tx_thread_schedule.s index 1f93ce06..b5f05400 100644 --- a/ports/cortex_m0/iar/src/tx_thread_schedule.s +++ b/ports/cortex_m0/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/iar/src/tx_thread_stack_build.s b/ports/cortex_m0/iar/src/tx_thread_stack_build.s index 050e46df..508ccc6d 100644 --- a/ports/cortex_m0/iar/src/tx_thread_stack_build.s +++ b/ports/cortex_m0/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/iar/src/tx_thread_system_return.s b/ports/cortex_m0/iar/src/tx_thread_system_return.s index 244e14f3..8a878783 100644 --- a/ports/cortex_m0/iar/src/tx_thread_system_return.s +++ b/ports/cortex_m0/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/iar/src/tx_timer_interrupt.s b/ports/cortex_m0/iar/src/tx_timer_interrupt.s index 3913ef3a..8e163a89 100644 --- a/ports/cortex_m0/iar/src/tx_timer_interrupt.s +++ b/ports/cortex_m0/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/keil/example_build/tx_initialize_low_level.s b/ports/cortex_m0/keil/example_build/tx_initialize_low_level.s index 834d5ac5..f1a83341 100644 --- a/ports/cortex_m0/keil/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m0/keil/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/keil/inc/tx_port.h b/ports/cortex_m0/keil/inc/tx_port.h index 8621fefd..1be205e8 100644 --- a/ports/cortex_m0/keil/inc/tx_port.h +++ b/ports/cortex_m0/keil/inc/tx_port.h @@ -323,7 +323,7 @@ unsigned int was_masked; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0/AC5 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m0/keil/src/tx_thread_context_restore.s b/ports/cortex_m0/keil/src/tx_thread_context_restore.s index 545bdd36..15e74269 100644 --- a/ports/cortex_m0/keil/src/tx_thread_context_restore.s +++ b/ports/cortex_m0/keil/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/keil/src/tx_thread_context_save.s b/ports/cortex_m0/keil/src/tx_thread_context_save.s index 6b989f4e..3245b512 100644 --- a/ports/cortex_m0/keil/src/tx_thread_context_save.s +++ b/ports/cortex_m0/keil/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/keil/src/tx_thread_interrupt_control.s b/ports/cortex_m0/keil/src/tx_thread_interrupt_control.s index e605de0c..a8504791 100644 --- a/ports/cortex_m0/keil/src/tx_thread_interrupt_control.s +++ b/ports/cortex_m0/keil/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/keil/src/tx_thread_interrupt_disable.s b/ports/cortex_m0/keil/src/tx_thread_interrupt_disable.s index aca71d4c..aac316ea 100644 --- a/ports/cortex_m0/keil/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_m0/keil/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/keil/src/tx_thread_interrupt_restore.s b/ports/cortex_m0/keil/src/tx_thread_interrupt_restore.s index 3cc233bb..b94b9e7b 100644 --- a/ports/cortex_m0/keil/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_m0/keil/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/keil/src/tx_thread_schedule.s b/ports/cortex_m0/keil/src/tx_thread_schedule.s index 6607a514..f9fa8184 100644 --- a/ports/cortex_m0/keil/src/tx_thread_schedule.s +++ b/ports/cortex_m0/keil/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/keil/src/tx_thread_stack_build.s b/ports/cortex_m0/keil/src/tx_thread_stack_build.s index add15232..8324238a 100644 --- a/ports/cortex_m0/keil/src/tx_thread_stack_build.s +++ b/ports/cortex_m0/keil/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/keil/src/tx_thread_system_return.s b/ports/cortex_m0/keil/src/tx_thread_system_return.s index 2ee69351..d37623fc 100644 --- a/ports/cortex_m0/keil/src/tx_thread_system_return.s +++ b/ports/cortex_m0/keil/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m0/keil/src/tx_timer_interrupt.s b/ports/cortex_m0/keil/src/tx_timer_interrupt.s index d5989ec4..e6ebbc76 100644 --- a/ports/cortex_m0/keil/src/tx_timer_interrupt.s +++ b/ports/cortex_m0/keil/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m23/ac6/inc/tx_port.h b/ports/cortex_m23/ac6/inc/tx_port.h index 4db1f18b..d157087e 100644 --- a/ports/cortex_m23/ac6/inc/tx_port.h +++ b/ports/cortex_m23/ac6/inc/tx_port.h @@ -414,7 +414,7 @@ unsigned int was_masked; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/AC6 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m23/gnu/inc/tx_port.h b/ports/cortex_m23/gnu/inc/tx_port.h index ad6fd037..fdc09817 100644 --- a/ports/cortex_m23/gnu/inc/tx_port.h +++ b/ports/cortex_m23/gnu/inc/tx_port.h @@ -446,7 +446,7 @@ unsigned int interrupt_save; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/GNU Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m23/iar/inc/tx_port.h b/ports/cortex_m23/iar/inc/tx_port.h index 6c8015df..5fb1e96b 100644 --- a/ports/cortex_m23/iar/inc/tx_port.h +++ b/ports/cortex_m23/iar/inc/tx_port.h @@ -436,7 +436,7 @@ __istate_t interrupt_save; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m3/ac5/example_build/tx_initialize_low_level.s b/ports/cortex_m3/ac5/example_build/tx_initialize_low_level.s index b932579f..696ea4ef 100644 --- a/ports/cortex_m3/ac5/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m3/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/ac5/inc/tx_port.h b/ports/cortex_m3/ac5/inc/tx_port.h index 3e7c5e1f..bf8459e7 100644 --- a/ports/cortex_m3/ac5/inc/tx_port.h +++ b/ports/cortex_m3/ac5/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/AC5 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m3/ac6/example_build/sample_threadx/tx_initialize_low_level.S b/ports/cortex_m3/ac6/example_build/sample_threadx/tx_initialize_low_level.S index 21da0527..bd52395a 100644 --- a/ports/cortex_m3/ac6/example_build/sample_threadx/tx_initialize_low_level.S +++ b/ports/cortex_m3/ac6/example_build/sample_threadx/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m3/ac6/inc/tx_port.h b/ports/cortex_m3/ac6/inc/tx_port.h index 39a3c0b4..f984b3e9 100644 --- a/ports/cortex_m3/ac6/inc/tx_port.h +++ b/ports/cortex_m3/ac6/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/AC6 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m3/ghs/inc/tx_port.h b/ports/cortex_m3/ghs/inc/tx_port.h index 7a4de34b..346a8475 100644 --- a/ports/cortex_m3/ghs/inc/tx_port.h +++ b/ports/cortex_m3/ghs/inc/tx_port.h @@ -379,7 +379,7 @@ asm void restore_ints(int a) #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/GHS Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/GHS Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_m3/ghs/src/tx_thread_context_restore.arm b/ports/cortex_m3/ghs/src/tx_thread_context_restore.arm index 042deefb..d89fcfd6 100644 --- a/ports/cortex_m3/ghs/src/tx_thread_context_restore.arm +++ b/ports/cortex_m3/ghs/src/tx_thread_context_restore.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/ghs/src/tx_thread_context_save.arm b/ports/cortex_m3/ghs/src/tx_thread_context_save.arm index f24f538a..13cd6d9e 100644 --- a/ports/cortex_m3/ghs/src/tx_thread_context_save.arm +++ b/ports/cortex_m3/ghs/src/tx_thread_context_save.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/ghs/src/tx_thread_interrupt_control.arm b/ports/cortex_m3/ghs/src/tx_thread_interrupt_control.arm index 93a7ec9e..fa8e83a6 100644 --- a/ports/cortex_m3/ghs/src/tx_thread_interrupt_control.arm +++ b/ports/cortex_m3/ghs/src/tx_thread_interrupt_control.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/ghs/src/tx_thread_interrupt_disable.arm b/ports/cortex_m3/ghs/src/tx_thread_interrupt_disable.arm index 4ab003a9..26dcfec2 100644 --- a/ports/cortex_m3/ghs/src/tx_thread_interrupt_disable.arm +++ b/ports/cortex_m3/ghs/src/tx_thread_interrupt_disable.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/ghs/src/tx_thread_interrupt_restore.arm b/ports/cortex_m3/ghs/src/tx_thread_interrupt_restore.arm index 8ab44f90..b850d47b 100644 --- a/ports/cortex_m3/ghs/src/tx_thread_interrupt_restore.arm +++ b/ports/cortex_m3/ghs/src/tx_thread_interrupt_restore.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/ghs/src/tx_thread_schedule.arm b/ports/cortex_m3/ghs/src/tx_thread_schedule.arm index 41e4e735..86ef0b20 100644 --- a/ports/cortex_m3/ghs/src/tx_thread_schedule.arm +++ b/ports/cortex_m3/ghs/src/tx_thread_schedule.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/ghs/src/tx_thread_stack_build.arm b/ports/cortex_m3/ghs/src/tx_thread_stack_build.arm index f484867c..30a47d88 100644 --- a/ports/cortex_m3/ghs/src/tx_thread_stack_build.arm +++ b/ports/cortex_m3/ghs/src/tx_thread_stack_build.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/ghs/src/tx_thread_system_return.arm b/ports/cortex_m3/ghs/src/tx_thread_system_return.arm index 99bae5d3..a1cfe337 100644 --- a/ports/cortex_m3/ghs/src/tx_thread_system_return.arm +++ b/ports/cortex_m3/ghs/src/tx_thread_system_return.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/ghs/src/tx_timer_interrupt.arm b/ports/cortex_m3/ghs/src/tx_timer_interrupt.arm index f05af7d5..16d0c031 100644 --- a/ports/cortex_m3/ghs/src/tx_timer_interrupt.arm +++ b/ports/cortex_m3/ghs/src/tx_timer_interrupt.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/gnu/inc/tx_port.h b/ports/cortex_m3/gnu/inc/tx_port.h index f1b84bf9..c3295d96 100644 --- a/ports/cortex_m3/gnu/inc/tx_port.h +++ b/ports/cortex_m3/gnu/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/GNU Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m3/iar/example_build/tx_initialize_low_level.s b/ports/cortex_m3/iar/example_build/tx_initialize_low_level.s index 97c1c065..4a62fd94 100644 --- a/ports/cortex_m3/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m3/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/iar/inc/tx_port.h b/ports/cortex_m3/iar/inc/tx_port.h index 22439b8c..f9aee569 100644 --- a/ports/cortex_m3/iar/inc/tx_port.h +++ b/ports/cortex_m3/iar/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m3/keil/example_build/tx_initialize_low_level.s b/ports/cortex_m3/keil/example_build/tx_initialize_low_level.s index 19681638..4ecf4ab2 100644 --- a/ports/cortex_m3/keil/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m3/keil/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/keil/inc/tx_port.h b/ports/cortex_m3/keil/inc/tx_port.h index 581e33a7..dcf480e2 100644 --- a/ports/cortex_m3/keil/inc/tx_port.h +++ b/ports/cortex_m3/keil/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/Keil Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3/Keil Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m3/keil/src/tx_thread_context_restore.s b/ports/cortex_m3/keil/src/tx_thread_context_restore.s index 09d05378..c7cd720d 100644 --- a/ports/cortex_m3/keil/src/tx_thread_context_restore.s +++ b/ports/cortex_m3/keil/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/keil/src/tx_thread_context_save.s b/ports/cortex_m3/keil/src/tx_thread_context_save.s index 2ebd3838..e6fe47cb 100644 --- a/ports/cortex_m3/keil/src/tx_thread_context_save.s +++ b/ports/cortex_m3/keil/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/keil/src/tx_thread_interrupt_control.s b/ports/cortex_m3/keil/src/tx_thread_interrupt_control.s index 543633df..2d7fa49c 100644 --- a/ports/cortex_m3/keil/src/tx_thread_interrupt_control.s +++ b/ports/cortex_m3/keil/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/keil/src/tx_thread_interrupt_disable.s b/ports/cortex_m3/keil/src/tx_thread_interrupt_disable.s index cd9afd1f..a63737ab 100644 --- a/ports/cortex_m3/keil/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_m3/keil/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/keil/src/tx_thread_interrupt_restore.s b/ports/cortex_m3/keil/src/tx_thread_interrupt_restore.s index 1d57b7cf..29ff36ec 100644 --- a/ports/cortex_m3/keil/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_m3/keil/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/keil/src/tx_thread_schedule.s b/ports/cortex_m3/keil/src/tx_thread_schedule.s index 0b212091..afaa3082 100644 --- a/ports/cortex_m3/keil/src/tx_thread_schedule.s +++ b/ports/cortex_m3/keil/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/keil/src/tx_thread_stack_build.s b/ports/cortex_m3/keil/src/tx_thread_stack_build.s index 56d92626..cf5cf6a3 100644 --- a/ports/cortex_m3/keil/src/tx_thread_stack_build.s +++ b/ports/cortex_m3/keil/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/keil/src/tx_thread_system_return.s b/ports/cortex_m3/keil/src/tx_thread_system_return.s index 38ffcfb0..80bb5259 100644 --- a/ports/cortex_m3/keil/src/tx_thread_system_return.s +++ b/ports/cortex_m3/keil/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m3/keil/src/tx_timer_interrupt.s b/ports/cortex_m3/keil/src/tx_timer_interrupt.s index d8e340ed..2ad0ac89 100644 --- a/ports/cortex_m3/keil/src/tx_timer_interrupt.s +++ b/ports/cortex_m3/keil/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m33/ac6/inc/tx_port.h b/ports/cortex_m33/ac6/inc/tx_port.h index d2123fe5..cd9a5877 100644 --- a/ports/cortex_m33/ac6/inc/tx_port.h +++ b/ports/cortex_m33/ac6/inc/tx_port.h @@ -645,7 +645,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33/AC6 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m33/gnu/inc/tx_port.h b/ports/cortex_m33/gnu/inc/tx_port.h index 2f3adea3..5ce23eeb 100644 --- a/ports/cortex_m33/gnu/inc/tx_port.h +++ b/ports/cortex_m33/gnu/inc/tx_port.h @@ -645,7 +645,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33/GNU Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m33/iar/inc/tx_port.h b/ports/cortex_m33/iar/inc/tx_port.h index 9c7f175d..451c6ae4 100644 --- a/ports/cortex_m33/iar/inc/tx_port.h +++ b/ports/cortex_m33/iar/inc/tx_port.h @@ -645,7 +645,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m4/ac5/inc/tx_port.h b/ports/cortex_m4/ac5/inc/tx_port.h index 70e2a5dc..cd5c9a5f 100644 --- a/ports/cortex_m4/ac5/inc/tx_port.h +++ b/ports/cortex_m4/ac5/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/AC5 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m4/ac6/example_build/sample_threadx/tx_initialize_low_level.S b/ports/cortex_m4/ac6/example_build/sample_threadx/tx_initialize_low_level.S index be4c3b6c..c60db600 100644 --- a/ports/cortex_m4/ac6/example_build/sample_threadx/tx_initialize_low_level.S +++ b/ports/cortex_m4/ac6/example_build/sample_threadx/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m4/ac6/inc/tx_port.h b/ports/cortex_m4/ac6/inc/tx_port.h index cfeb1d34..5f65a194 100644 --- a/ports/cortex_m4/ac6/inc/tx_port.h +++ b/ports/cortex_m4/ac6/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/AC6 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m4/ghs/inc/tx_port.h b/ports/cortex_m4/ghs/inc/tx_port.h index 2f206f84..88cb4853 100644 --- a/ports/cortex_m4/ghs/inc/tx_port.h +++ b/ports/cortex_m4/ghs/inc/tx_port.h @@ -386,7 +386,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/GHS Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/GHS Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_m4/ghs/src/tx_thread_context_restore.arm b/ports/cortex_m4/ghs/src/tx_thread_context_restore.arm index 154b9912..4a15e661 100644 --- a/ports/cortex_m4/ghs/src/tx_thread_context_restore.arm +++ b/ports/cortex_m4/ghs/src/tx_thread_context_restore.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/ghs/src/tx_thread_context_save.arm b/ports/cortex_m4/ghs/src/tx_thread_context_save.arm index cf7d3cec..4ee07714 100644 --- a/ports/cortex_m4/ghs/src/tx_thread_context_save.arm +++ b/ports/cortex_m4/ghs/src/tx_thread_context_save.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/ghs/src/tx_thread_interrupt_control.arm b/ports/cortex_m4/ghs/src/tx_thread_interrupt_control.arm index 2616fbd4..62d2391f 100644 --- a/ports/cortex_m4/ghs/src/tx_thread_interrupt_control.arm +++ b/ports/cortex_m4/ghs/src/tx_thread_interrupt_control.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/ghs/src/tx_thread_interrupt_disable.arm b/ports/cortex_m4/ghs/src/tx_thread_interrupt_disable.arm index 49058de3..57292d50 100644 --- a/ports/cortex_m4/ghs/src/tx_thread_interrupt_disable.arm +++ b/ports/cortex_m4/ghs/src/tx_thread_interrupt_disable.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/ghs/src/tx_thread_interrupt_restore.arm b/ports/cortex_m4/ghs/src/tx_thread_interrupt_restore.arm index 7fc4a236..8b38ea80 100644 --- a/ports/cortex_m4/ghs/src/tx_thread_interrupt_restore.arm +++ b/ports/cortex_m4/ghs/src/tx_thread_interrupt_restore.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/ghs/src/tx_thread_schedule.arm b/ports/cortex_m4/ghs/src/tx_thread_schedule.arm index 2f94f12b..efc8f667 100644 --- a/ports/cortex_m4/ghs/src/tx_thread_schedule.arm +++ b/ports/cortex_m4/ghs/src/tx_thread_schedule.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/ghs/src/tx_thread_stack_build.arm b/ports/cortex_m4/ghs/src/tx_thread_stack_build.arm index 425bae02..39bdec1f 100644 --- a/ports/cortex_m4/ghs/src/tx_thread_stack_build.arm +++ b/ports/cortex_m4/ghs/src/tx_thread_stack_build.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/ghs/src/tx_thread_system_return.arm b/ports/cortex_m4/ghs/src/tx_thread_system_return.arm index 4b62762a..e579fb4d 100644 --- a/ports/cortex_m4/ghs/src/tx_thread_system_return.arm +++ b/ports/cortex_m4/ghs/src/tx_thread_system_return.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/ghs/src/tx_timer_interrupt.arm b/ports/cortex_m4/ghs/src/tx_timer_interrupt.arm index 86dcbe2f..8b67b4d7 100644 --- a/ports/cortex_m4/ghs/src/tx_timer_interrupt.arm +++ b/ports/cortex_m4/ghs/src/tx_timer_interrupt.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/gnu/example_build/tx_initialize_low_level.S b/ports/cortex_m4/gnu/example_build/tx_initialize_low_level.S index 24cc903d..d7e11c06 100644 --- a/ports/cortex_m4/gnu/example_build/tx_initialize_low_level.S +++ b/ports/cortex_m4/gnu/example_build/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m4/gnu/inc/tx_port.h b/ports/cortex_m4/gnu/inc/tx_port.h index 1f933c10..ac2af455 100644 --- a/ports/cortex_m4/gnu/inc/tx_port.h +++ b/ports/cortex_m4/gnu/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/GNU Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m4/iar/example_build/tx_initialize_low_level.s b/ports/cortex_m4/iar/example_build/tx_initialize_low_level.s index 1705e068..d3e6d9af 100644 --- a/ports/cortex_m4/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m4/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/iar/inc/tx_port.h b/ports/cortex_m4/iar/inc/tx_port.h index de2d62a7..f836d5af 100644 --- a/ports/cortex_m4/iar/inc/tx_port.h +++ b/ports/cortex_m4/iar/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m4/keil/example_build/tx_initialize_low_level.s b/ports/cortex_m4/keil/example_build/tx_initialize_low_level.s index 16bcaa9c..e2aec801 100644 --- a/ports/cortex_m4/keil/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m4/keil/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/keil/inc/tx_port.h b/ports/cortex_m4/keil/inc/tx_port.h index 53f71420..b8c03fa3 100644 --- a/ports/cortex_m4/keil/inc/tx_port.h +++ b/ports/cortex_m4/keil/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/Keil Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4/Keil Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m4/keil/src/tx_thread_context_restore.s b/ports/cortex_m4/keil/src/tx_thread_context_restore.s index d7837b03..dddaca7b 100644 --- a/ports/cortex_m4/keil/src/tx_thread_context_restore.s +++ b/ports/cortex_m4/keil/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/keil/src/tx_thread_context_save.s b/ports/cortex_m4/keil/src/tx_thread_context_save.s index 55dcf08d..207ab4b1 100644 --- a/ports/cortex_m4/keil/src/tx_thread_context_save.s +++ b/ports/cortex_m4/keil/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/keil/src/tx_thread_interrupt_control.s b/ports/cortex_m4/keil/src/tx_thread_interrupt_control.s index e1cf3ff8..35367af7 100644 --- a/ports/cortex_m4/keil/src/tx_thread_interrupt_control.s +++ b/ports/cortex_m4/keil/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/keil/src/tx_thread_interrupt_disable.s b/ports/cortex_m4/keil/src/tx_thread_interrupt_disable.s index 6801014a..825eaf12 100644 --- a/ports/cortex_m4/keil/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_m4/keil/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/keil/src/tx_thread_interrupt_restore.s b/ports/cortex_m4/keil/src/tx_thread_interrupt_restore.s index fd0d6196..4cc24369 100644 --- a/ports/cortex_m4/keil/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_m4/keil/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/keil/src/tx_thread_schedule.s b/ports/cortex_m4/keil/src/tx_thread_schedule.s index b0a58d8b..d97cf136 100644 --- a/ports/cortex_m4/keil/src/tx_thread_schedule.s +++ b/ports/cortex_m4/keil/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/keil/src/tx_thread_stack_build.s b/ports/cortex_m4/keil/src/tx_thread_stack_build.s index aa04b898..f73651ce 100644 --- a/ports/cortex_m4/keil/src/tx_thread_stack_build.s +++ b/ports/cortex_m4/keil/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/keil/src/tx_thread_system_return.s b/ports/cortex_m4/keil/src/tx_thread_system_return.s index 43d0bd08..5ee774d9 100644 --- a/ports/cortex_m4/keil/src/tx_thread_system_return.s +++ b/ports/cortex_m4/keil/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m4/keil/src/tx_timer_interrupt.s b/ports/cortex_m4/keil/src/tx_timer_interrupt.s index fd8fd9b5..240db972 100644 --- a/ports/cortex_m4/keil/src/tx_timer_interrupt.s +++ b/ports/cortex_m4/keil/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m55/ac6/inc/tx_port.h b/ports/cortex_m55/ac6/inc/tx_port.h index 724e26e1..99453a82 100644 --- a/ports/cortex_m55/ac6/inc/tx_port.h +++ b/ports/cortex_m55/ac6/inc/tx_port.h @@ -645,7 +645,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M55/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M55/AC6 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m55/gnu/inc/tx_port.h b/ports/cortex_m55/gnu/inc/tx_port.h index 272b00bb..721b538d 100644 --- a/ports/cortex_m55/gnu/inc/tx_port.h +++ b/ports/cortex_m55/gnu/inc/tx_port.h @@ -645,7 +645,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M55/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M55/GNU Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m55/iar/inc/tx_port.h b/ports/cortex_m55/iar/inc/tx_port.h index 1bde5990..8d1086b9 100644 --- a/ports/cortex_m55/iar/inc/tx_port.h +++ b/ports/cortex_m55/iar/inc/tx_port.h @@ -645,7 +645,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M55/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M55/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m7/ac5/example_build/tx_initialize_low_level.s b/ports/cortex_m7/ac5/example_build/tx_initialize_low_level.s index b3bcc62a..bd6aa150 100644 --- a/ports/cortex_m7/ac5/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m7/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m7/ac5/inc/tx_port.h b/ports/cortex_m7/ac5/inc/tx_port.h index 4475bf17..2f78faee 100644 --- a/ports/cortex_m7/ac5/inc/tx_port.h +++ b/ports/cortex_m7/ac5/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7/AC5 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m7/ac6/example_build/sample_threadx/tx_initialize_low_level.S b/ports/cortex_m7/ac6/example_build/sample_threadx/tx_initialize_low_level.S index a82bbf44..ae298a34 100644 --- a/ports/cortex_m7/ac6/example_build/sample_threadx/tx_initialize_low_level.S +++ b/ports/cortex_m7/ac6/example_build/sample_threadx/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_m7/ac6/inc/tx_port.h b/ports/cortex_m7/ac6/inc/tx_port.h index 7a88857f..0963380f 100644 --- a/ports/cortex_m7/ac6/inc/tx_port.h +++ b/ports/cortex_m7/ac6/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7/AC6 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m7/ghs/inc/tx_port.h b/ports/cortex_m7/ghs/inc/tx_port.h index d1e8da37..c1a8d1f7 100644 --- a/ports/cortex_m7/ghs/inc/tx_port.h +++ b/ports/cortex_m7/ghs/inc/tx_port.h @@ -386,7 +386,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7/GHS Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7/GHS Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_m7/ghs/src/tx_thread_context_restore.arm b/ports/cortex_m7/ghs/src/tx_thread_context_restore.arm index f4a31acb..556e4940 100644 --- a/ports/cortex_m7/ghs/src/tx_thread_context_restore.arm +++ b/ports/cortex_m7/ghs/src/tx_thread_context_restore.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m7/ghs/src/tx_thread_context_save.arm b/ports/cortex_m7/ghs/src/tx_thread_context_save.arm index 33d024a9..edf1ab03 100644 --- a/ports/cortex_m7/ghs/src/tx_thread_context_save.arm +++ b/ports/cortex_m7/ghs/src/tx_thread_context_save.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m7/ghs/src/tx_thread_interrupt_control.arm b/ports/cortex_m7/ghs/src/tx_thread_interrupt_control.arm index b5eed1e9..3d514ab4 100644 --- a/ports/cortex_m7/ghs/src/tx_thread_interrupt_control.arm +++ b/ports/cortex_m7/ghs/src/tx_thread_interrupt_control.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m7/ghs/src/tx_thread_interrupt_disable.arm b/ports/cortex_m7/ghs/src/tx_thread_interrupt_disable.arm index ad34dcc5..1d014f8a 100644 --- a/ports/cortex_m7/ghs/src/tx_thread_interrupt_disable.arm +++ b/ports/cortex_m7/ghs/src/tx_thread_interrupt_disable.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m7/ghs/src/tx_thread_interrupt_restore.arm b/ports/cortex_m7/ghs/src/tx_thread_interrupt_restore.arm index b23c3a1a..55a5289a 100644 --- a/ports/cortex_m7/ghs/src/tx_thread_interrupt_restore.arm +++ b/ports/cortex_m7/ghs/src/tx_thread_interrupt_restore.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m7/ghs/src/tx_thread_schedule.arm b/ports/cortex_m7/ghs/src/tx_thread_schedule.arm index bbe68efa..3b8aa405 100644 --- a/ports/cortex_m7/ghs/src/tx_thread_schedule.arm +++ b/ports/cortex_m7/ghs/src/tx_thread_schedule.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m7/ghs/src/tx_thread_stack_build.arm b/ports/cortex_m7/ghs/src/tx_thread_stack_build.arm index bce401bb..e2f0182e 100644 --- a/ports/cortex_m7/ghs/src/tx_thread_stack_build.arm +++ b/ports/cortex_m7/ghs/src/tx_thread_stack_build.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m7/ghs/src/tx_thread_system_return.arm b/ports/cortex_m7/ghs/src/tx_thread_system_return.arm index c7cc1975..da4ae3cb 100644 --- a/ports/cortex_m7/ghs/src/tx_thread_system_return.arm +++ b/ports/cortex_m7/ghs/src/tx_thread_system_return.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m7/ghs/src/tx_timer_interrupt.arm b/ports/cortex_m7/ghs/src/tx_timer_interrupt.arm index 61965551..6a9531fd 100644 --- a/ports/cortex_m7/ghs/src/tx_timer_interrupt.arm +++ b/ports/cortex_m7/ghs/src/tx_timer_interrupt.arm @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m7/gnu/inc/tx_port.h b/ports/cortex_m7/gnu/inc/tx_port.h index 9b098cc8..dbdbbcd0 100644 --- a/ports/cortex_m7/gnu/inc/tx_port.h +++ b/ports/cortex_m7/gnu/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7/GNU Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m7/iar/example_build/tx_initialize_low_level.s b/ports/cortex_m7/iar/example_build/tx_initialize_low_level.s index 896f7c50..b725ef99 100644 --- a/ports/cortex_m7/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m7/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_m7/iar/inc/tx_port.h b/ports/cortex_m7/iar/inc/tx_port.h index e4cf0518..04126681 100644 --- a/ports/cortex_m7/iar/inc/tx_port.h +++ b/ports/cortex_m7/iar/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m85/ac6/inc/tx_port.h b/ports/cortex_m85/ac6/inc/tx_port.h index 83d37d4d..bedb8e92 100644 --- a/ports/cortex_m85/ac6/inc/tx_port.h +++ b/ports/cortex_m85/ac6/inc/tx_port.h @@ -645,7 +645,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M85/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M85/AC6 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m85/gnu/inc/tx_port.h b/ports/cortex_m85/gnu/inc/tx_port.h index b4b75ebe..a852adae 100644 --- a/ports/cortex_m85/gnu/inc/tx_port.h +++ b/ports/cortex_m85/gnu/inc/tx_port.h @@ -645,7 +645,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M85/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M85/GNU Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_m85/iar/inc/tx_port.h b/ports/cortex_m85/iar/inc/tx_port.h index c8bdf299..6de8ea77 100644 --- a/ports/cortex_m85/iar/inc/tx_port.h +++ b/ports/cortex_m85/iar/inc/tx_port.h @@ -645,7 +645,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M85/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M85/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_r4/ac5/example_build/tx_initialize_low_level.s b/ports/cortex_r4/ac5/example_build/tx_initialize_low_level.s index 594b3774..c36819eb 100644 --- a/ports/cortex_r4/ac5/example_build/tx_initialize_low_level.s +++ b/ports/cortex_r4/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/inc/tx_port.h b/ports/cortex_r4/ac5/inc/tx_port.h index 8b305241..81b50433 100644 --- a/ports/cortex_r4/ac5/inc/tx_port.h +++ b/ports/cortex_r4/ac5/inc/tx_port.h @@ -326,7 +326,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/AC5 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_r4/ac5/src/tx_thread_context_restore.s b/ports/cortex_r4/ac5/src/tx_thread_context_restore.s index d5019869..3a4eef8c 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_context_restore.s +++ b/ports/cortex_r4/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_context_save.s b/ports/cortex_r4/ac5/src/tx_thread_context_save.s index ed8c9a71..c03187e4 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_context_save.s +++ b/ports/cortex_r4/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_fiq_context_restore.s b/ports/cortex_r4/ac5/src/tx_thread_fiq_context_restore.s index 2d68ea90..e2a712a7 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_fiq_context_restore.s +++ b/ports/cortex_r4/ac5/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_fiq_context_save.s b/ports/cortex_r4/ac5/src/tx_thread_fiq_context_save.s index 94a39a7d..9026e56d 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_fiq_context_save.s +++ b/ports/cortex_r4/ac5/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_fiq_nesting_end.s b/ports/cortex_r4/ac5/src/tx_thread_fiq_nesting_end.s index 330f6b02..a26bab46 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_fiq_nesting_end.s +++ b/ports/cortex_r4/ac5/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_fiq_nesting_start.s b/ports/cortex_r4/ac5/src/tx_thread_fiq_nesting_start.s index d2f28053..d714b4b3 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_fiq_nesting_start.s +++ b/ports/cortex_r4/ac5/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_interrupt_control.s b/ports/cortex_r4/ac5/src/tx_thread_interrupt_control.s index 4ab29f55..e69cb941 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_interrupt_control.s +++ b/ports/cortex_r4/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_interrupt_disable.s b/ports/cortex_r4/ac5/src/tx_thread_interrupt_disable.s index b73db8ea..239cb49e 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_r4/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_interrupt_restore.s b/ports/cortex_r4/ac5/src/tx_thread_interrupt_restore.s index 730bcc54..bbf8ccd7 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_r4/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_irq_nesting_end.s b/ports/cortex_r4/ac5/src/tx_thread_irq_nesting_end.s index 54225771..2c718a74 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_r4/ac5/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_irq_nesting_start.s b/ports/cortex_r4/ac5/src/tx_thread_irq_nesting_start.s index 969d1754..2bd74a99 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_r4/ac5/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_schedule.s b/ports/cortex_r4/ac5/src/tx_thread_schedule.s index 29e32248..64af5589 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_schedule.s +++ b/ports/cortex_r4/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_stack_build.s b/ports/cortex_r4/ac5/src/tx_thread_stack_build.s index 0038aa8a..2f21d30c 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_stack_build.s +++ b/ports/cortex_r4/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_system_return.s b/ports/cortex_r4/ac5/src/tx_thread_system_return.s index f006db85..f6128d56 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_system_return.s +++ b/ports/cortex_r4/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_thread_vectored_context_save.s b/ports/cortex_r4/ac5/src/tx_thread_vectored_context_save.s index 89fb4fed..aec5717d 100644 --- a/ports/cortex_r4/ac5/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_r4/ac5/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac5/src/tx_timer_interrupt.s b/ports/cortex_r4/ac5/src/tx_timer_interrupt.s index c57649cb..a5d96fda 100644 --- a/ports/cortex_r4/ac5/src/tx_timer_interrupt.s +++ b/ports/cortex_r4/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/ac6/inc/tx_port.h b/ports/cortex_r4/ac6/inc/tx_port.h index acf7cc15..0e4b3f1e 100644 --- a/ports/cortex_r4/ac6/inc/tx_port.h +++ b/ports/cortex_r4/ac6/inc/tx_port.h @@ -329,7 +329,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/AC6 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_r4/ghs/inc/tx_port.h b/ports/cortex_r4/ghs/inc/tx_port.h index 4b4a58ea..ca07eaec 100644 --- a/ports/cortex_r4/ghs/inc/tx_port.h +++ b/ports/cortex_r4/ghs/inc/tx_port.h @@ -384,7 +384,7 @@ asm void restore_ints(int a) #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/Green Hills Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/Green Hills Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_r4/gnu/example_build/reset.S b/ports/cortex_r4/gnu/example_build/reset.S index fb0694e5..a11c826a 100644 --- a/ports/cortex_r4/gnu/example_build/reset.S +++ b/ports/cortex_r4/gnu/example_build/reset.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/example_build/tx_initialize_low_level.S b/ports/cortex_r4/gnu/example_build/tx_initialize_low_level.S index f2b0ec85..82304d36 100644 --- a/ports/cortex_r4/gnu/example_build/tx_initialize_low_level.S +++ b/ports/cortex_r4/gnu/example_build/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/inc/tx_port.h b/ports/cortex_r4/gnu/inc/tx_port.h index df974007..c304cb99 100644 --- a/ports/cortex_r4/gnu/inc/tx_port.h +++ b/ports/cortex_r4/gnu/inc/tx_port.h @@ -311,7 +311,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_r4/gnu/src/tx_thread_context_restore.S b/ports/cortex_r4/gnu/src/tx_thread_context_restore.S index c750ac78..b56b9d83 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_context_restore.S +++ b/ports/cortex_r4/gnu/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_context_save.S b/ports/cortex_r4/gnu/src/tx_thread_context_save.S index 85f5b30b..1dfb9ecd 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_context_save.S +++ b/ports/cortex_r4/gnu/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_fiq_context_restore.S b/ports/cortex_r4/gnu/src/tx_thread_fiq_context_restore.S index 5f0eb330..6e0212c9 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_fiq_context_restore.S +++ b/ports/cortex_r4/gnu/src/tx_thread_fiq_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_fiq_context_save.S b/ports/cortex_r4/gnu/src/tx_thread_fiq_context_save.S index ac85b69e..330bb9d5 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_fiq_context_save.S +++ b/ports/cortex_r4/gnu/src/tx_thread_fiq_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_fiq_nesting_end.S b/ports/cortex_r4/gnu/src/tx_thread_fiq_nesting_end.S index 91212ca9..245752a5 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_fiq_nesting_end.S +++ b/ports/cortex_r4/gnu/src/tx_thread_fiq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_fiq_nesting_start.S b/ports/cortex_r4/gnu/src/tx_thread_fiq_nesting_start.S index 1ffd08ad..636007cb 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_fiq_nesting_start.S +++ b/ports/cortex_r4/gnu/src/tx_thread_fiq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_interrupt_control.S b/ports/cortex_r4/gnu/src/tx_thread_interrupt_control.S index 807182c6..b78773a0 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_interrupt_control.S +++ b/ports/cortex_r4/gnu/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_interrupt_disable.S b/ports/cortex_r4/gnu/src/tx_thread_interrupt_disable.S index a62da37a..7e376a51 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_interrupt_disable.S +++ b/ports/cortex_r4/gnu/src/tx_thread_interrupt_disable.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_interrupt_restore.S b/ports/cortex_r4/gnu/src/tx_thread_interrupt_restore.S index 7d28615c..209cb658 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_interrupt_restore.S +++ b/ports/cortex_r4/gnu/src/tx_thread_interrupt_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_irq_nesting_end.S b/ports/cortex_r4/gnu/src/tx_thread_irq_nesting_end.S index 7dc448c9..84caee5b 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_irq_nesting_end.S +++ b/ports/cortex_r4/gnu/src/tx_thread_irq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_irq_nesting_start.S b/ports/cortex_r4/gnu/src/tx_thread_irq_nesting_start.S index c2511eb0..9a2b1cc3 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_irq_nesting_start.S +++ b/ports/cortex_r4/gnu/src/tx_thread_irq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_schedule.S b/ports/cortex_r4/gnu/src/tx_thread_schedule.S index 54bfa3f8..36a3ed61 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_schedule.S +++ b/ports/cortex_r4/gnu/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_stack_build.S b/ports/cortex_r4/gnu/src/tx_thread_stack_build.S index 8c947052..678e7a9b 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_stack_build.S +++ b/ports/cortex_r4/gnu/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_system_return.S b/ports/cortex_r4/gnu/src/tx_thread_system_return.S index 7e80c67b..eee00ce6 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_system_return.S +++ b/ports/cortex_r4/gnu/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_thread_vectored_context_save.S b/ports/cortex_r4/gnu/src/tx_thread_vectored_context_save.S index a16c0234..a303ef54 100644 --- a/ports/cortex_r4/gnu/src/tx_thread_vectored_context_save.S +++ b/ports/cortex_r4/gnu/src/tx_thread_vectored_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/gnu/src/tx_timer_interrupt.S b/ports/cortex_r4/gnu/src/tx_timer_interrupt.S index ad93c002..0b6c8381 100644 --- a/ports/cortex_r4/gnu/src/tx_timer_interrupt.S +++ b/ports/cortex_r4/gnu/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r4/iar/example_build/tx_initialize_low_level.s b/ports/cortex_r4/iar/example_build/tx_initialize_low_level.s index 4a5e69a3..1b743b09 100644 --- a/ports/cortex_r4/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_r4/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/inc/tx_port.h b/ports/cortex_r4/iar/inc/tx_port.h index 638ff84e..f4048621 100644 --- a/ports/cortex_r4/iar/inc/tx_port.h +++ b/ports/cortex_r4/iar/inc/tx_port.h @@ -366,7 +366,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_r4/iar/src/tx_thread_context_restore.s b/ports/cortex_r4/iar/src/tx_thread_context_restore.s index c9534ed3..1b51ccdc 100644 --- a/ports/cortex_r4/iar/src/tx_thread_context_restore.s +++ b/ports/cortex_r4/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/src/tx_thread_context_save.s b/ports/cortex_r4/iar/src/tx_thread_context_save.s index 632e844d..9c01112d 100644 --- a/ports/cortex_r4/iar/src/tx_thread_context_save.s +++ b/ports/cortex_r4/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/src/tx_thread_interrupt_control.s b/ports/cortex_r4/iar/src/tx_thread_interrupt_control.s index b29355bd..44561789 100644 --- a/ports/cortex_r4/iar/src/tx_thread_interrupt_control.s +++ b/ports/cortex_r4/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/src/tx_thread_interrupt_disable.s b/ports/cortex_r4/iar/src/tx_thread_interrupt_disable.s index 4fee0d39..cc071a5b 100644 --- a/ports/cortex_r4/iar/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_r4/iar/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/src/tx_thread_interrupt_restore.s b/ports/cortex_r4/iar/src/tx_thread_interrupt_restore.s index cddce991..a2bc5506 100644 --- a/ports/cortex_r4/iar/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_r4/iar/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/src/tx_thread_irq_nesting_end.s b/ports/cortex_r4/iar/src/tx_thread_irq_nesting_end.s index b6cee453..42b1deae 100644 --- a/ports/cortex_r4/iar/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_r4/iar/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/src/tx_thread_irq_nesting_start.s b/ports/cortex_r4/iar/src/tx_thread_irq_nesting_start.s index 2e4c2158..83fbbd17 100644 --- a/ports/cortex_r4/iar/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_r4/iar/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/src/tx_thread_schedule.s b/ports/cortex_r4/iar/src/tx_thread_schedule.s index 77c8e5fe..42be1490 100644 --- a/ports/cortex_r4/iar/src/tx_thread_schedule.s +++ b/ports/cortex_r4/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/src/tx_thread_stack_build.s b/ports/cortex_r4/iar/src/tx_thread_stack_build.s index 9559bd3e..bbb86848 100644 --- a/ports/cortex_r4/iar/src/tx_thread_stack_build.s +++ b/ports/cortex_r4/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/src/tx_thread_system_return.s b/ports/cortex_r4/iar/src/tx_thread_system_return.s index 78ad12b8..a8c755fa 100644 --- a/ports/cortex_r4/iar/src/tx_thread_system_return.s +++ b/ports/cortex_r4/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/src/tx_thread_vectored_context_save.s b/ports/cortex_r4/iar/src/tx_thread_vectored_context_save.s index 47a39a17..aa24d6c3 100644 --- a/ports/cortex_r4/iar/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_r4/iar/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r4/iar/src/tx_timer_interrupt.s b/ports/cortex_r4/iar/src/tx_timer_interrupt.s index f186a123..896c5525 100644 --- a/ports/cortex_r4/iar/src/tx_timer_interrupt.s +++ b/ports/cortex_r4/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/example_build/tx_initialize_low_level.s b/ports/cortex_r5/ac5/example_build/tx_initialize_low_level.s index 99e607b5..0ae74009 100644 --- a/ports/cortex_r5/ac5/example_build/tx_initialize_low_level.s +++ b/ports/cortex_r5/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/inc/tx_port.h b/ports/cortex_r5/ac5/inc/tx_port.h index 667bea33..678700dc 100644 --- a/ports/cortex_r5/ac5/inc/tx_port.h +++ b/ports/cortex_r5/ac5/inc/tx_port.h @@ -319,7 +319,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R5/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R5/AC5 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_r5/ac5/src/tx_thread_context_restore.s b/ports/cortex_r5/ac5/src/tx_thread_context_restore.s index 805a4013..15fbb1e9 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_context_restore.s +++ b/ports/cortex_r5/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_context_save.s b/ports/cortex_r5/ac5/src/tx_thread_context_save.s index 6e000500..9d1b2d14 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_context_save.s +++ b/ports/cortex_r5/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_fiq_context_restore.s b/ports/cortex_r5/ac5/src/tx_thread_fiq_context_restore.s index c395968a..65a4be5a 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_fiq_context_restore.s +++ b/ports/cortex_r5/ac5/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_fiq_context_save.s b/ports/cortex_r5/ac5/src/tx_thread_fiq_context_save.s index fbfbef20..bc99650a 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_fiq_context_save.s +++ b/ports/cortex_r5/ac5/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_fiq_nesting_end.s b/ports/cortex_r5/ac5/src/tx_thread_fiq_nesting_end.s index 3edb566c..89e58b50 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_fiq_nesting_end.s +++ b/ports/cortex_r5/ac5/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_fiq_nesting_start.s b/ports/cortex_r5/ac5/src/tx_thread_fiq_nesting_start.s index 4bc440d5..224966a7 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_fiq_nesting_start.s +++ b/ports/cortex_r5/ac5/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_interrupt_control.s b/ports/cortex_r5/ac5/src/tx_thread_interrupt_control.s index 35e54348..2a3698d7 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_interrupt_control.s +++ b/ports/cortex_r5/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_interrupt_disable.s b/ports/cortex_r5/ac5/src/tx_thread_interrupt_disable.s index 9611259c..7af79f59 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_r5/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_interrupt_restore.s b/ports/cortex_r5/ac5/src/tx_thread_interrupt_restore.s index 062d1fff..61ebae01 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_r5/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_irq_nesting_end.s b/ports/cortex_r5/ac5/src/tx_thread_irq_nesting_end.s index 8adf6b36..5b85a17f 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_r5/ac5/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_irq_nesting_start.s b/ports/cortex_r5/ac5/src/tx_thread_irq_nesting_start.s index 324c32a8..f46318ae 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_r5/ac5/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_schedule.s b/ports/cortex_r5/ac5/src/tx_thread_schedule.s index 968faccd..0144fb47 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_schedule.s +++ b/ports/cortex_r5/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_stack_build.s b/ports/cortex_r5/ac5/src/tx_thread_stack_build.s index b8d2331c..af6a3657 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_stack_build.s +++ b/ports/cortex_r5/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_system_return.s b/ports/cortex_r5/ac5/src/tx_thread_system_return.s index a84f926f..69ed81f1 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_system_return.s +++ b/ports/cortex_r5/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_thread_vectored_context_save.s b/ports/cortex_r5/ac5/src/tx_thread_vectored_context_save.s index 8cf88e99..c1dad6a9 100644 --- a/ports/cortex_r5/ac5/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_r5/ac5/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac5/src/tx_timer_interrupt.s b/ports/cortex_r5/ac5/src/tx_timer_interrupt.s index 9f2f21b6..f2408e30 100644 --- a/ports/cortex_r5/ac5/src/tx_timer_interrupt.s +++ b/ports/cortex_r5/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/example_build/sample_threadx/tx_initialize_low_level.S b/ports/cortex_r5/ac6/example_build/sample_threadx/tx_initialize_low_level.S index 3ba6a8bb..1f80ff96 100644 --- a/ports/cortex_r5/ac6/example_build/sample_threadx/tx_initialize_low_level.S +++ b/ports/cortex_r5/ac6/example_build/sample_threadx/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/inc/tx_port.h b/ports/cortex_r5/ac6/inc/tx_port.h index a4b40db7..6ac1ade7 100644 --- a/ports/cortex_r5/ac6/inc/tx_port.h +++ b/ports/cortex_r5/ac6/inc/tx_port.h @@ -311,7 +311,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R5/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R5/AC6 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_r5/ac6/src/tx_thread_context_restore.S b/ports/cortex_r5/ac6/src/tx_thread_context_restore.S index 5178a6bb..198d4ad1 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_context_restore.S +++ b/ports/cortex_r5/ac6/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_context_save.S b/ports/cortex_r5/ac6/src/tx_thread_context_save.S index 3ff69fc2..26440a92 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_context_save.S +++ b/ports/cortex_r5/ac6/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_fiq_context_restore.S b/ports/cortex_r5/ac6/src/tx_thread_fiq_context_restore.S index 809963ab..8a46e22c 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_fiq_context_restore.S +++ b/ports/cortex_r5/ac6/src/tx_thread_fiq_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_fiq_context_save.S b/ports/cortex_r5/ac6/src/tx_thread_fiq_context_save.S index 5f926ef6..a898aa07 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_fiq_context_save.S +++ b/ports/cortex_r5/ac6/src/tx_thread_fiq_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_fiq_nesting_end.S b/ports/cortex_r5/ac6/src/tx_thread_fiq_nesting_end.S index 99486aa0..d9d3d30b 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_fiq_nesting_end.S +++ b/ports/cortex_r5/ac6/src/tx_thread_fiq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_fiq_nesting_start.S b/ports/cortex_r5/ac6/src/tx_thread_fiq_nesting_start.S index 8ce3ea77..c3045e8c 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_fiq_nesting_start.S +++ b/ports/cortex_r5/ac6/src/tx_thread_fiq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_interrupt_control.S b/ports/cortex_r5/ac6/src/tx_thread_interrupt_control.S index 3cad72d0..e73e4d7c 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_interrupt_control.S +++ b/ports/cortex_r5/ac6/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_interrupt_disable.S b/ports/cortex_r5/ac6/src/tx_thread_interrupt_disable.S index 64f93b80..688d243d 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_interrupt_disable.S +++ b/ports/cortex_r5/ac6/src/tx_thread_interrupt_disable.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_interrupt_restore.S b/ports/cortex_r5/ac6/src/tx_thread_interrupt_restore.S index 1042b50d..7872802b 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_interrupt_restore.S +++ b/ports/cortex_r5/ac6/src/tx_thread_interrupt_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_irq_nesting_end.S b/ports/cortex_r5/ac6/src/tx_thread_irq_nesting_end.S index 14fc4828..5d58b2a5 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_irq_nesting_end.S +++ b/ports/cortex_r5/ac6/src/tx_thread_irq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_irq_nesting_start.S b/ports/cortex_r5/ac6/src/tx_thread_irq_nesting_start.S index 33e89894..33aa6f37 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_irq_nesting_start.S +++ b/ports/cortex_r5/ac6/src/tx_thread_irq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_schedule.S b/ports/cortex_r5/ac6/src/tx_thread_schedule.S index 9e1f3819..b895b143 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_schedule.S +++ b/ports/cortex_r5/ac6/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_stack_build.S b/ports/cortex_r5/ac6/src/tx_thread_stack_build.S index c947dfad..2b2de3dd 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_stack_build.S +++ b/ports/cortex_r5/ac6/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_system_return.S b/ports/cortex_r5/ac6/src/tx_thread_system_return.S index 93b3f3d3..3ca9650e 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_system_return.S +++ b/ports/cortex_r5/ac6/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_thread_vectored_context_save.S b/ports/cortex_r5/ac6/src/tx_thread_vectored_context_save.S index 66871c43..aa5bc2f3 100644 --- a/ports/cortex_r5/ac6/src/tx_thread_vectored_context_save.S +++ b/ports/cortex_r5/ac6/src/tx_thread_vectored_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ac6/src/tx_timer_interrupt.S b/ports/cortex_r5/ac6/src/tx_timer_interrupt.S index d1527375..0261bddc 100644 --- a/ports/cortex_r5/ac6/src/tx_timer_interrupt.S +++ b/ports/cortex_r5/ac6/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/ghs/inc/tx_port.h b/ports/cortex_r5/ghs/inc/tx_port.h index 51e753a8..596a8e07 100644 --- a/ports/cortex_r5/ghs/inc/tx_port.h +++ b/ports/cortex_r5/ghs/inc/tx_port.h @@ -394,7 +394,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R5/Green Hills Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R5/Green Hills Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_r5/gnu/example_build/reset.S b/ports/cortex_r5/gnu/example_build/reset.S index fb0694e5..a11c826a 100644 --- a/ports/cortex_r5/gnu/example_build/reset.S +++ b/ports/cortex_r5/gnu/example_build/reset.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/example_build/tx_initialize_low_level.S b/ports/cortex_r5/gnu/example_build/tx_initialize_low_level.S index ccbedb03..a3471277 100644 --- a/ports/cortex_r5/gnu/example_build/tx_initialize_low_level.S +++ b/ports/cortex_r5/gnu/example_build/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/inc/tx_port.h b/ports/cortex_r5/gnu/inc/tx_port.h index 82708eff..4d11417e 100644 --- a/ports/cortex_r5/gnu/inc/tx_port.h +++ b/ports/cortex_r5/gnu/inc/tx_port.h @@ -311,7 +311,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R5/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R5/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/cortex_r5/gnu/src/tx_thread_context_restore.S b/ports/cortex_r5/gnu/src/tx_thread_context_restore.S index ee37e31d..4f3721cb 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_context_restore.S +++ b/ports/cortex_r5/gnu/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_context_save.S b/ports/cortex_r5/gnu/src/tx_thread_context_save.S index 9c3156e4..8806203d 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_context_save.S +++ b/ports/cortex_r5/gnu/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_fiq_context_restore.S b/ports/cortex_r5/gnu/src/tx_thread_fiq_context_restore.S index 717b6948..5d1c2cc8 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_fiq_context_restore.S +++ b/ports/cortex_r5/gnu/src/tx_thread_fiq_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_fiq_context_save.S b/ports/cortex_r5/gnu/src/tx_thread_fiq_context_save.S index 4370350b..6c94dc91 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_fiq_context_save.S +++ b/ports/cortex_r5/gnu/src/tx_thread_fiq_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_fiq_nesting_end.S b/ports/cortex_r5/gnu/src/tx_thread_fiq_nesting_end.S index bdf30e04..752d6e63 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_fiq_nesting_end.S +++ b/ports/cortex_r5/gnu/src/tx_thread_fiq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_fiq_nesting_start.S b/ports/cortex_r5/gnu/src/tx_thread_fiq_nesting_start.S index c22d915e..f013cc3a 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_fiq_nesting_start.S +++ b/ports/cortex_r5/gnu/src/tx_thread_fiq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_interrupt_control.S b/ports/cortex_r5/gnu/src/tx_thread_interrupt_control.S index bf7b588a..7ef4c98d 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_interrupt_control.S +++ b/ports/cortex_r5/gnu/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_interrupt_disable.S b/ports/cortex_r5/gnu/src/tx_thread_interrupt_disable.S index 88b9432d..00b10b7d 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_interrupt_disable.S +++ b/ports/cortex_r5/gnu/src/tx_thread_interrupt_disable.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_interrupt_restore.S b/ports/cortex_r5/gnu/src/tx_thread_interrupt_restore.S index 2fb25df4..8e510f15 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_interrupt_restore.S +++ b/ports/cortex_r5/gnu/src/tx_thread_interrupt_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_irq_nesting_end.S b/ports/cortex_r5/gnu/src/tx_thread_irq_nesting_end.S index 036e36d1..61edbd15 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_irq_nesting_end.S +++ b/ports/cortex_r5/gnu/src/tx_thread_irq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_irq_nesting_start.S b/ports/cortex_r5/gnu/src/tx_thread_irq_nesting_start.S index c176fbae..b547290c 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_irq_nesting_start.S +++ b/ports/cortex_r5/gnu/src/tx_thread_irq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_schedule.S b/ports/cortex_r5/gnu/src/tx_thread_schedule.S index 11cf8955..011af480 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_schedule.S +++ b/ports/cortex_r5/gnu/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_stack_build.S b/ports/cortex_r5/gnu/src/tx_thread_stack_build.S index 999365e0..0bcc63ed 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_stack_build.S +++ b/ports/cortex_r5/gnu/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_system_return.S b/ports/cortex_r5/gnu/src/tx_thread_system_return.S index a76db651..77cf89d5 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_system_return.S +++ b/ports/cortex_r5/gnu/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_thread_vectored_context_save.S b/ports/cortex_r5/gnu/src/tx_thread_vectored_context_save.S index 9e6246ad..96e58d4f 100644 --- a/ports/cortex_r5/gnu/src/tx_thread_vectored_context_save.S +++ b/ports/cortex_r5/gnu/src/tx_thread_vectored_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/gnu/src/tx_timer_interrupt.S b/ports/cortex_r5/gnu/src/tx_timer_interrupt.S index 7e95c1df..b5d2553a 100644 --- a/ports/cortex_r5/gnu/src/tx_timer_interrupt.S +++ b/ports/cortex_r5/gnu/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports/cortex_r5/iar/example_build/tx_initialize_low_level.s b/ports/cortex_r5/iar/example_build/tx_initialize_low_level.s index d181b911..745a9d19 100644 --- a/ports/cortex_r5/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_r5/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/inc/tx_port.h b/ports/cortex_r5/iar/inc/tx_port.h index 8e5b6841..77aa6468 100644 --- a/ports/cortex_r5/iar/inc/tx_port.h +++ b/ports/cortex_r5/iar/inc/tx_port.h @@ -366,7 +366,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R5/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R5/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports/cortex_r5/iar/src/tx_thread_context_restore.s b/ports/cortex_r5/iar/src/tx_thread_context_restore.s index 5b7e13a3..62f098eb 100644 --- a/ports/cortex_r5/iar/src/tx_thread_context_restore.s +++ b/ports/cortex_r5/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/src/tx_thread_context_save.s b/ports/cortex_r5/iar/src/tx_thread_context_save.s index bf8b76a5..ce3a27d7 100644 --- a/ports/cortex_r5/iar/src/tx_thread_context_save.s +++ b/ports/cortex_r5/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/src/tx_thread_interrupt_control.s b/ports/cortex_r5/iar/src/tx_thread_interrupt_control.s index b034ac7c..6a7768c9 100644 --- a/ports/cortex_r5/iar/src/tx_thread_interrupt_control.s +++ b/ports/cortex_r5/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/src/tx_thread_interrupt_disable.s b/ports/cortex_r5/iar/src/tx_thread_interrupt_disable.s index 55e5953e..687a56e6 100644 --- a/ports/cortex_r5/iar/src/tx_thread_interrupt_disable.s +++ b/ports/cortex_r5/iar/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/src/tx_thread_interrupt_restore.s b/ports/cortex_r5/iar/src/tx_thread_interrupt_restore.s index 0b9729ec..3a60ca6d 100644 --- a/ports/cortex_r5/iar/src/tx_thread_interrupt_restore.s +++ b/ports/cortex_r5/iar/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/src/tx_thread_irq_nesting_end.s b/ports/cortex_r5/iar/src/tx_thread_irq_nesting_end.s index 5f0cafea..f2153ae6 100644 --- a/ports/cortex_r5/iar/src/tx_thread_irq_nesting_end.s +++ b/ports/cortex_r5/iar/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/src/tx_thread_irq_nesting_start.s b/ports/cortex_r5/iar/src/tx_thread_irq_nesting_start.s index 945412b7..e81f900a 100644 --- a/ports/cortex_r5/iar/src/tx_thread_irq_nesting_start.s +++ b/ports/cortex_r5/iar/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/src/tx_thread_schedule.s b/ports/cortex_r5/iar/src/tx_thread_schedule.s index 1c0468f1..fc88ce8f 100644 --- a/ports/cortex_r5/iar/src/tx_thread_schedule.s +++ b/ports/cortex_r5/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/src/tx_thread_stack_build.s b/ports/cortex_r5/iar/src/tx_thread_stack_build.s index 61fe002b..3b9dbc49 100644 --- a/ports/cortex_r5/iar/src/tx_thread_stack_build.s +++ b/ports/cortex_r5/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/src/tx_thread_system_return.s b/ports/cortex_r5/iar/src/tx_thread_system_return.s index a7d0059a..58e5d072 100644 --- a/ports/cortex_r5/iar/src/tx_thread_system_return.s +++ b/ports/cortex_r5/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/src/tx_thread_vectored_context_save.s b/ports/cortex_r5/iar/src/tx_thread_vectored_context_save.s index 962a0399..4029bbb4 100644 --- a/ports/cortex_r5/iar/src/tx_thread_vectored_context_save.s +++ b/ports/cortex_r5/iar/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r5/iar/src/tx_timer_interrupt.s b/ports/cortex_r5/iar/src/tx_timer_interrupt.s index 3111b3e8..85274fa2 100644 --- a/ports/cortex_r5/iar/src/tx_timer_interrupt.s +++ b/ports/cortex_r5/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/cortex_r7/ghs/inc/tx_port.h b/ports/cortex_r7/ghs/inc/tx_port.h index a700be62..30f86c92 100644 --- a/ports/cortex_r7/ghs/inc/tx_port.h +++ b/ports/cortex_r7/ghs/inc/tx_port.h @@ -394,7 +394,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R7/Green Hills Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R7/Green Hills Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/linux/gnu/inc/tx_port.h b/ports/linux/gnu/inc/tx_port.h index 3429ad17..76bec2a6 100644 --- a/ports/linux/gnu/inc/tx_port.h +++ b/ports/linux/gnu/inc/tx_port.h @@ -547,7 +547,7 @@ VOID _tx_thread_interrupt_restore(UINT previous_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) Microsoft Corporation * ThreadX Linux/gcc Version 6.4.0 *"; + "Copyright (c) Microsoft Corporation * ThreadX Linux/gcc Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/risc-v32/iar/inc/tx_port.h b/ports/risc-v32/iar/inc/tx_port.h index 45529333..466e0eee 100644 --- a/ports/risc-v32/iar/inc/tx_port.h +++ b/ports/risc-v32/iar/inc/tx_port.h @@ -265,7 +265,7 @@ unsigned int _tx_thread_interrupt_control(uns #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RISC-V32/IAR Version G6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RISC-V32/IAR Version G6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/risc-v64/gnu/inc/tx_port.h b/ports/risc-v64/gnu/inc/tx_port.h index 822e398b..b3faade0 100644 --- a/ports/risc-v64/gnu/inc/tx_port.h +++ b/ports/risc-v64/gnu/inc/tx_port.h @@ -288,7 +288,7 @@ ULONG64 _tx_thread_interrupt_control(uns #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RISC-V64/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RISC-V64/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/rxv1/ccrx/inc/tx_port.h b/ports/rxv1/ccrx/inc/tx_port.h index 7a6d3e95..5da2eda2 100644 --- a/ports/rxv1/ccrx/inc/tx_port.h +++ b/ports/rxv1/ccrx/inc/tx_port.h @@ -272,7 +272,7 @@ static void _tx_thread_system_return_inline(void) #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv1/CCRX Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv1/CCRX Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/rxv1/ccrx/src/tx_initialize_low_level.src b/ports/rxv1/ccrx/src/tx_initialize_low_level.src index d4697a0a..a460a4f0 100644 --- a/ports/rxv1/ccrx/src/tx_initialize_low_level.src +++ b/ports/rxv1/ccrx/src/tx_initialize_low_level.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/ccrx/src/tx_thread_context_restore.src b/ports/rxv1/ccrx/src/tx_thread_context_restore.src index 799171e4..eaf1eed1 100644 --- a/ports/rxv1/ccrx/src/tx_thread_context_restore.src +++ b/ports/rxv1/ccrx/src/tx_thread_context_restore.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/ccrx/src/tx_thread_context_save.src b/ports/rxv1/ccrx/src/tx_thread_context_save.src index 1272dbb3..c4f78b3c 100644 --- a/ports/rxv1/ccrx/src/tx_thread_context_save.src +++ b/ports/rxv1/ccrx/src/tx_thread_context_save.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/ccrx/src/tx_thread_interrupt_control.src b/ports/rxv1/ccrx/src/tx_thread_interrupt_control.src index aad5823e..9724dad3 100644 --- a/ports/rxv1/ccrx/src/tx_thread_interrupt_control.src +++ b/ports/rxv1/ccrx/src/tx_thread_interrupt_control.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/ccrx/src/tx_thread_schedule.src b/ports/rxv1/ccrx/src/tx_thread_schedule.src index ec173ce1..1d19b5fa 100644 --- a/ports/rxv1/ccrx/src/tx_thread_schedule.src +++ b/ports/rxv1/ccrx/src/tx_thread_schedule.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/ccrx/src/tx_thread_stack_build.src b/ports/rxv1/ccrx/src/tx_thread_stack_build.src index 50bdcb7a..79df118b 100644 --- a/ports/rxv1/ccrx/src/tx_thread_stack_build.src +++ b/ports/rxv1/ccrx/src/tx_thread_stack_build.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/ccrx/src/tx_thread_system_return.src b/ports/rxv1/ccrx/src/tx_thread_system_return.src index 6307413a..c1363639 100644 --- a/ports/rxv1/ccrx/src/tx_thread_system_return.src +++ b/ports/rxv1/ccrx/src/tx_thread_system_return.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/ccrx/src/tx_timer_interrupt.src b/ports/rxv1/ccrx/src/tx_timer_interrupt.src index 421e116b..a386e50a 100644 --- a/ports/rxv1/ccrx/src/tx_timer_interrupt.src +++ b/ports/rxv1/ccrx/src/tx_timer_interrupt.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/gnu/inc/tx_port.h b/ports/rxv1/gnu/inc/tx_port.h index a8c8862a..9dc89d9b 100644 --- a/ports/rxv1/gnu/inc/tx_port.h +++ b/ports/rxv1/gnu/inc/tx_port.h @@ -268,7 +268,7 @@ static void _tx_thread_system_return_inline(void) #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv1/GNURX Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv1/GNURX Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/rxv1/gnu/src/tx_initialize_low_level.S b/ports/rxv1/gnu/src/tx_initialize_low_level.S index 4f9ae837..7fda9938 100644 --- a/ports/rxv1/gnu/src/tx_initialize_low_level.S +++ b/ports/rxv1/gnu/src/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/gnu/src/tx_thread_context_restore.S b/ports/rxv1/gnu/src/tx_thread_context_restore.S index df5cbce1..f4f54afc 100644 --- a/ports/rxv1/gnu/src/tx_thread_context_restore.S +++ b/ports/rxv1/gnu/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/gnu/src/tx_thread_context_save.S b/ports/rxv1/gnu/src/tx_thread_context_save.S index 0f0e4906..6d74b81a 100644 --- a/ports/rxv1/gnu/src/tx_thread_context_save.S +++ b/ports/rxv1/gnu/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/gnu/src/tx_thread_interrupt_control.S b/ports/rxv1/gnu/src/tx_thread_interrupt_control.S index 5fff1894..73cd1f27 100644 --- a/ports/rxv1/gnu/src/tx_thread_interrupt_control.S +++ b/ports/rxv1/gnu/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/gnu/src/tx_thread_schedule.S b/ports/rxv1/gnu/src/tx_thread_schedule.S index 0a0706aa..b3f16809 100644 --- a/ports/rxv1/gnu/src/tx_thread_schedule.S +++ b/ports/rxv1/gnu/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/gnu/src/tx_thread_stack_build.S b/ports/rxv1/gnu/src/tx_thread_stack_build.S index a65e744c..278d5814 100644 --- a/ports/rxv1/gnu/src/tx_thread_stack_build.S +++ b/ports/rxv1/gnu/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/gnu/src/tx_thread_system_return.S b/ports/rxv1/gnu/src/tx_thread_system_return.S index 4436cefe..a9e3df99 100644 --- a/ports/rxv1/gnu/src/tx_thread_system_return.S +++ b/ports/rxv1/gnu/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/gnu/src/tx_timer_interrupt.S b/ports/rxv1/gnu/src/tx_timer_interrupt.S index 72069ff9..29ed1a7a 100644 --- a/ports/rxv1/gnu/src/tx_timer_interrupt.S +++ b/ports/rxv1/gnu/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/iar/inc/tx_port.h b/ports/rxv1/iar/inc/tx_port.h index 2bc16d72..fff08092 100644 --- a/ports/rxv1/iar/inc/tx_port.h +++ b/ports/rxv1/iar/inc/tx_port.h @@ -269,7 +269,7 @@ static void _tx_thread_system_return_inline(void) #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv1/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv1/IAR Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/rxv1/iar/src/tx_initialize_low_level.s b/ports/rxv1/iar/src/tx_initialize_low_level.s index 6e35af6a..081f529c 100644 --- a/ports/rxv1/iar/src/tx_initialize_low_level.s +++ b/ports/rxv1/iar/src/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/iar/src/tx_thread_context_restore.s b/ports/rxv1/iar/src/tx_thread_context_restore.s index 184a0408..4abefcc9 100644 --- a/ports/rxv1/iar/src/tx_thread_context_restore.s +++ b/ports/rxv1/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/iar/src/tx_thread_context_save.s b/ports/rxv1/iar/src/tx_thread_context_save.s index 503e9cb6..b79ba6f4 100644 --- a/ports/rxv1/iar/src/tx_thread_context_save.s +++ b/ports/rxv1/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/iar/src/tx_thread_interrupt_control.s b/ports/rxv1/iar/src/tx_thread_interrupt_control.s index f582b0f3..3c510df7 100644 --- a/ports/rxv1/iar/src/tx_thread_interrupt_control.s +++ b/ports/rxv1/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/iar/src/tx_thread_schedule.s b/ports/rxv1/iar/src/tx_thread_schedule.s index 3de33034..2602d46b 100644 --- a/ports/rxv1/iar/src/tx_thread_schedule.s +++ b/ports/rxv1/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/iar/src/tx_thread_stack_build.s b/ports/rxv1/iar/src/tx_thread_stack_build.s index c0877659..30809756 100644 --- a/ports/rxv1/iar/src/tx_thread_stack_build.s +++ b/ports/rxv1/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/iar/src/tx_thread_system_return.s b/ports/rxv1/iar/src/tx_thread_system_return.s index 1b0ed54c..b524fb7b 100644 --- a/ports/rxv1/iar/src/tx_thread_system_return.s +++ b/ports/rxv1/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv1/iar/src/tx_timer_interrupt.s b/ports/rxv1/iar/src/tx_timer_interrupt.s index 0daf2be5..ea330250 100644 --- a/ports/rxv1/iar/src/tx_timer_interrupt.s +++ b/ports/rxv1/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/ccrx/inc/tx_port.h b/ports/rxv2/ccrx/inc/tx_port.h index 0dd47a0a..93872e30 100644 --- a/ports/rxv2/ccrx/inc/tx_port.h +++ b/ports/rxv2/ccrx/inc/tx_port.h @@ -274,7 +274,7 @@ static void _tx_thread_system_return_inline(void) #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv2/CCRX Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv2/CCRX Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/rxv2/ccrx/src/tx_initialize_low_level.src b/ports/rxv2/ccrx/src/tx_initialize_low_level.src index bfe25343..84e9eacf 100644 --- a/ports/rxv2/ccrx/src/tx_initialize_low_level.src +++ b/ports/rxv2/ccrx/src/tx_initialize_low_level.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/ccrx/src/tx_thread_context_restore.src b/ports/rxv2/ccrx/src/tx_thread_context_restore.src index 6af99277..641f5ab3 100644 --- a/ports/rxv2/ccrx/src/tx_thread_context_restore.src +++ b/ports/rxv2/ccrx/src/tx_thread_context_restore.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/ccrx/src/tx_thread_context_save.src b/ports/rxv2/ccrx/src/tx_thread_context_save.src index 05481662..4f0fbeaf 100644 --- a/ports/rxv2/ccrx/src/tx_thread_context_save.src +++ b/ports/rxv2/ccrx/src/tx_thread_context_save.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/ccrx/src/tx_thread_interrupt_control.src b/ports/rxv2/ccrx/src/tx_thread_interrupt_control.src index 6e1ce1c4..a8688a52 100644 --- a/ports/rxv2/ccrx/src/tx_thread_interrupt_control.src +++ b/ports/rxv2/ccrx/src/tx_thread_interrupt_control.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/ccrx/src/tx_thread_schedule.src b/ports/rxv2/ccrx/src/tx_thread_schedule.src index 1ff7ba40..e148a51b 100644 --- a/ports/rxv2/ccrx/src/tx_thread_schedule.src +++ b/ports/rxv2/ccrx/src/tx_thread_schedule.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/ccrx/src/tx_thread_stack_build.src b/ports/rxv2/ccrx/src/tx_thread_stack_build.src index 44100be6..7e309c3d 100644 --- a/ports/rxv2/ccrx/src/tx_thread_stack_build.src +++ b/ports/rxv2/ccrx/src/tx_thread_stack_build.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/ccrx/src/tx_thread_system_return.src b/ports/rxv2/ccrx/src/tx_thread_system_return.src index c32858ba..9e83585c 100644 --- a/ports/rxv2/ccrx/src/tx_thread_system_return.src +++ b/ports/rxv2/ccrx/src/tx_thread_system_return.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/ccrx/src/tx_timer_interrupt.src b/ports/rxv2/ccrx/src/tx_timer_interrupt.src index 5491018b..a1806c4a 100644 --- a/ports/rxv2/ccrx/src/tx_timer_interrupt.src +++ b/ports/rxv2/ccrx/src/tx_timer_interrupt.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/gnu/inc/tx_port.h b/ports/rxv2/gnu/inc/tx_port.h index 511ffb8c..a9d50271 100644 --- a/ports/rxv2/gnu/inc/tx_port.h +++ b/ports/rxv2/gnu/inc/tx_port.h @@ -270,7 +270,7 @@ static void _tx_thread_system_return_inline(void) #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv2/GNURX Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv2/GNURX Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/rxv2/gnu/src/tx_initialize_low_level.S b/ports/rxv2/gnu/src/tx_initialize_low_level.S index 5bd0ba65..23454a75 100644 --- a/ports/rxv2/gnu/src/tx_initialize_low_level.S +++ b/ports/rxv2/gnu/src/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/gnu/src/tx_thread_context_restore.S b/ports/rxv2/gnu/src/tx_thread_context_restore.S index 54a6683e..a34f9ccd 100644 --- a/ports/rxv2/gnu/src/tx_thread_context_restore.S +++ b/ports/rxv2/gnu/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/gnu/src/tx_thread_context_save.S b/ports/rxv2/gnu/src/tx_thread_context_save.S index d08e3abc..9740b6af 100644 --- a/ports/rxv2/gnu/src/tx_thread_context_save.S +++ b/ports/rxv2/gnu/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/gnu/src/tx_thread_interrupt_control.S b/ports/rxv2/gnu/src/tx_thread_interrupt_control.S index ac3a9118..69859e11 100644 --- a/ports/rxv2/gnu/src/tx_thread_interrupt_control.S +++ b/ports/rxv2/gnu/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/gnu/src/tx_thread_schedule.S b/ports/rxv2/gnu/src/tx_thread_schedule.S index 3720e304..c8a9abab 100644 --- a/ports/rxv2/gnu/src/tx_thread_schedule.S +++ b/ports/rxv2/gnu/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/gnu/src/tx_thread_stack_build.S b/ports/rxv2/gnu/src/tx_thread_stack_build.S index 94619bc9..57ddac62 100644 --- a/ports/rxv2/gnu/src/tx_thread_stack_build.S +++ b/ports/rxv2/gnu/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/gnu/src/tx_thread_system_return.S b/ports/rxv2/gnu/src/tx_thread_system_return.S index 1bc034e7..fc981a49 100644 --- a/ports/rxv2/gnu/src/tx_thread_system_return.S +++ b/ports/rxv2/gnu/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/gnu/src/tx_timer_interrupt.S b/ports/rxv2/gnu/src/tx_timer_interrupt.S index e0cd1b2d..0af2e2ca 100644 --- a/ports/rxv2/gnu/src/tx_timer_interrupt.S +++ b/ports/rxv2/gnu/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/iar/inc/tx_port.h b/ports/rxv2/iar/inc/tx_port.h index 665721b2..36c5c2e4 100644 --- a/ports/rxv2/iar/inc/tx_port.h +++ b/ports/rxv2/iar/inc/tx_port.h @@ -270,7 +270,7 @@ static void _tx_thread_system_return_inline(void) #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv2/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv2/IAR Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/rxv2/iar/src/tx_initialize_low_level.s b/ports/rxv2/iar/src/tx_initialize_low_level.s index a47c5876..eafcd6c0 100644 --- a/ports/rxv2/iar/src/tx_initialize_low_level.s +++ b/ports/rxv2/iar/src/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/iar/src/tx_thread_context_restore.s b/ports/rxv2/iar/src/tx_thread_context_restore.s index 9977585d..c8a452ed 100644 --- a/ports/rxv2/iar/src/tx_thread_context_restore.s +++ b/ports/rxv2/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/iar/src/tx_thread_context_save.s b/ports/rxv2/iar/src/tx_thread_context_save.s index 67305450..28c0ea5f 100644 --- a/ports/rxv2/iar/src/tx_thread_context_save.s +++ b/ports/rxv2/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/iar/src/tx_thread_interrupt_control.s b/ports/rxv2/iar/src/tx_thread_interrupt_control.s index 79178d0d..d4656214 100644 --- a/ports/rxv2/iar/src/tx_thread_interrupt_control.s +++ b/ports/rxv2/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/iar/src/tx_thread_schedule.s b/ports/rxv2/iar/src/tx_thread_schedule.s index bce33934..5cf106c7 100644 --- a/ports/rxv2/iar/src/tx_thread_schedule.s +++ b/ports/rxv2/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/iar/src/tx_thread_stack_build.s b/ports/rxv2/iar/src/tx_thread_stack_build.s index d477debc..1d6be57f 100644 --- a/ports/rxv2/iar/src/tx_thread_stack_build.s +++ b/ports/rxv2/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/iar/src/tx_thread_system_return.s b/ports/rxv2/iar/src/tx_thread_system_return.s index 5e787223..0e312291 100644 --- a/ports/rxv2/iar/src/tx_thread_system_return.s +++ b/ports/rxv2/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv2/iar/src/tx_timer_interrupt.s b/ports/rxv2/iar/src/tx_timer_interrupt.s index 759d5b26..9bc43b24 100644 --- a/ports/rxv2/iar/src/tx_timer_interrupt.s +++ b/ports/rxv2/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/ccrx/inc/tx_port.h b/ports/rxv3/ccrx/inc/tx_port.h index bc5a2ddb..6d3e38ba 100644 --- a/ports/rxv3/ccrx/inc/tx_port.h +++ b/ports/rxv3/ccrx/inc/tx_port.h @@ -278,7 +278,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv3/CCRX Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv3/CCRX Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/rxv3/ccrx/src/tx_initialize_low_level.src b/ports/rxv3/ccrx/src/tx_initialize_low_level.src index a186bef2..bec6521c 100644 --- a/ports/rxv3/ccrx/src/tx_initialize_low_level.src +++ b/ports/rxv3/ccrx/src/tx_initialize_low_level.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/ccrx/src/tx_thread_context_restore.src b/ports/rxv3/ccrx/src/tx_thread_context_restore.src index 10e55642..d64f15e1 100644 --- a/ports/rxv3/ccrx/src/tx_thread_context_restore.src +++ b/ports/rxv3/ccrx/src/tx_thread_context_restore.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/ccrx/src/tx_thread_context_save.src b/ports/rxv3/ccrx/src/tx_thread_context_save.src index 04177aa3..0e4dce94 100644 --- a/ports/rxv3/ccrx/src/tx_thread_context_save.src +++ b/ports/rxv3/ccrx/src/tx_thread_context_save.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/ccrx/src/tx_thread_interrupt_control.src b/ports/rxv3/ccrx/src/tx_thread_interrupt_control.src index 9541e96d..e3d1d640 100644 --- a/ports/rxv3/ccrx/src/tx_thread_interrupt_control.src +++ b/ports/rxv3/ccrx/src/tx_thread_interrupt_control.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/ccrx/src/tx_thread_schedule.src b/ports/rxv3/ccrx/src/tx_thread_schedule.src index c191eef8..abbd6cbf 100644 --- a/ports/rxv3/ccrx/src/tx_thread_schedule.src +++ b/ports/rxv3/ccrx/src/tx_thread_schedule.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/ccrx/src/tx_thread_stack_build.src b/ports/rxv3/ccrx/src/tx_thread_stack_build.src index 7aa3aab6..6738fef3 100644 --- a/ports/rxv3/ccrx/src/tx_thread_stack_build.src +++ b/ports/rxv3/ccrx/src/tx_thread_stack_build.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/ccrx/src/tx_thread_system_return.src b/ports/rxv3/ccrx/src/tx_thread_system_return.src index f9cf8317..a3e41c9a 100644 --- a/ports/rxv3/ccrx/src/tx_thread_system_return.src +++ b/ports/rxv3/ccrx/src/tx_thread_system_return.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/ccrx/src/tx_timer_interrupt.src b/ports/rxv3/ccrx/src/tx_timer_interrupt.src index 6148087d..3d5d1a36 100644 --- a/ports/rxv3/ccrx/src/tx_timer_interrupt.src +++ b/ports/rxv3/ccrx/src/tx_timer_interrupt.src @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/gnu/inc/tx_port.h b/ports/rxv3/gnu/inc/tx_port.h index a8af59a3..08eba2f1 100644 --- a/ports/rxv3/gnu/inc/tx_port.h +++ b/ports/rxv3/gnu/inc/tx_port.h @@ -274,7 +274,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv3/GNURX Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv3/GNURX Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/rxv3/gnu/src/tx_initialize_low_level.S b/ports/rxv3/gnu/src/tx_initialize_low_level.S index b0936157..e0f89d99 100644 --- a/ports/rxv3/gnu/src/tx_initialize_low_level.S +++ b/ports/rxv3/gnu/src/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/gnu/src/tx_thread_context_restore.S b/ports/rxv3/gnu/src/tx_thread_context_restore.S index cae8cb69..2090fc48 100644 --- a/ports/rxv3/gnu/src/tx_thread_context_restore.S +++ b/ports/rxv3/gnu/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/gnu/src/tx_thread_context_save.S b/ports/rxv3/gnu/src/tx_thread_context_save.S index 6c73b4bc..eb4caee0 100644 --- a/ports/rxv3/gnu/src/tx_thread_context_save.S +++ b/ports/rxv3/gnu/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/gnu/src/tx_thread_interrupt_control.S b/ports/rxv3/gnu/src/tx_thread_interrupt_control.S index 5a0d2b88..1111dc97 100644 --- a/ports/rxv3/gnu/src/tx_thread_interrupt_control.S +++ b/ports/rxv3/gnu/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/gnu/src/tx_thread_schedule.S b/ports/rxv3/gnu/src/tx_thread_schedule.S index 29d9a074..f01b22bf 100644 --- a/ports/rxv3/gnu/src/tx_thread_schedule.S +++ b/ports/rxv3/gnu/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/gnu/src/tx_thread_stack_build.S b/ports/rxv3/gnu/src/tx_thread_stack_build.S index e88dbfa1..a1398c51 100644 --- a/ports/rxv3/gnu/src/tx_thread_stack_build.S +++ b/ports/rxv3/gnu/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/gnu/src/tx_thread_system_return.S b/ports/rxv3/gnu/src/tx_thread_system_return.S index 935ca393..ecd7b205 100644 --- a/ports/rxv3/gnu/src/tx_thread_system_return.S +++ b/ports/rxv3/gnu/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/gnu/src/tx_timer_interrupt.S b/ports/rxv3/gnu/src/tx_timer_interrupt.S index 9f2e76bb..5fd09f8f 100644 --- a/ports/rxv3/gnu/src/tx_timer_interrupt.S +++ b/ports/rxv3/gnu/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/iar/inc/tx_port.h b/ports/rxv3/iar/inc/tx_port.h index bb94b01e..60279416 100644 --- a/ports/rxv3/iar/inc/tx_port.h +++ b/ports/rxv3/iar/inc/tx_port.h @@ -275,7 +275,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv3/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv3/IAR Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/rxv3/iar/src/tx_initialize_low_level.s b/ports/rxv3/iar/src/tx_initialize_low_level.s index dc44fa25..5b0c04e5 100644 --- a/ports/rxv3/iar/src/tx_initialize_low_level.s +++ b/ports/rxv3/iar/src/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/iar/src/tx_thread_context_restore.s b/ports/rxv3/iar/src/tx_thread_context_restore.s index 0fc7da2d..9306d159 100644 --- a/ports/rxv3/iar/src/tx_thread_context_restore.s +++ b/ports/rxv3/iar/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/iar/src/tx_thread_context_save.s b/ports/rxv3/iar/src/tx_thread_context_save.s index 1cca5454..f6128347 100644 --- a/ports/rxv3/iar/src/tx_thread_context_save.s +++ b/ports/rxv3/iar/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/iar/src/tx_thread_interrupt_control.s b/ports/rxv3/iar/src/tx_thread_interrupt_control.s index fb6dcea5..9db56216 100644 --- a/ports/rxv3/iar/src/tx_thread_interrupt_control.s +++ b/ports/rxv3/iar/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/iar/src/tx_thread_schedule.s b/ports/rxv3/iar/src/tx_thread_schedule.s index 9809142f..37f82438 100644 --- a/ports/rxv3/iar/src/tx_thread_schedule.s +++ b/ports/rxv3/iar/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/iar/src/tx_thread_stack_build.s b/ports/rxv3/iar/src/tx_thread_stack_build.s index 5a6082e4..a5872e63 100644 --- a/ports/rxv3/iar/src/tx_thread_stack_build.s +++ b/ports/rxv3/iar/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/iar/src/tx_thread_system_return.s b/ports/rxv3/iar/src/tx_thread_system_return.s index 6407b80e..160d90c3 100644 --- a/ports/rxv3/iar/src/tx_thread_system_return.s +++ b/ports/rxv3/iar/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/rxv3/iar/src/tx_timer_interrupt.s b/ports/rxv3/iar/src/tx_timer_interrupt.s index 39013623..78f0cf98 100644 --- a/ports/rxv3/iar/src/tx_timer_interrupt.s +++ b/ports/rxv3/iar/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports/win32/vs_2019/inc/tx_port.h b/ports/win32/vs_2019/inc/tx_port.h index f4aa4d8c..e994dc20 100644 --- a/ports/win32/vs_2019/inc/tx_port.h +++ b/ports/win32/vs_2019/inc/tx_port.h @@ -418,7 +418,7 @@ VOID _tx_thread_interrupt_restore(UINT previous_posture); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Win32/Visual Studio Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Win32/Visual Studio Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports/xtensa/xcc/inc/tx_port.h b/ports/xtensa/xcc/inc/tx_port.h index bfc52d5f..cdfe8be7 100644 --- a/ports/xtensa/xcc/inc/tx_port.h +++ b/ports/xtensa/xcc/inc/tx_port.h @@ -470,7 +470,7 @@ extern int xt_timer_intnum; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * Azure RTOS Xtensa Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * Azure RTOS Xtensa Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_arch/ARMv7-A/threadx/common/inc/tx_port.h b/ports_arch/ARMv7-A/threadx/common/inc/tx_port.h index d61f74c9..d80ddec1 100644 --- a/ports_arch/ARMv7-A/threadx/common/inc/tx_port.h +++ b/ports_arch/ARMv7-A/threadx/common/inc/tx_port.h @@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_arch/ARMv7-M/threadx/ghs/inc/tx_port.h b/ports_arch/ARMv7-M/threadx/ghs/inc/tx_port.h index b0576d6f..8420990c 100644 --- a/ports_arch/ARMv7-M/threadx/ghs/inc/tx_port.h +++ b/ports_arch/ARMv7-M/threadx/ghs/inc/tx_port.h @@ -392,7 +392,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-M Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-M Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_arch/ARMv7-M/threadx/inc/tx_port.h b/ports_arch/ARMv7-M/threadx/inc/tx_port.h index 994984d5..256fb265 100644 --- a/ports_arch/ARMv7-M/threadx/inc/tx_port.h +++ b/ports_arch/ARMv7-M/threadx/inc/tx_port.h @@ -715,7 +715,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-Mx Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-Mx Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_arch/ARMv7-M/threadx_modules/inc/tx_port.h b/ports_arch/ARMv7-M/threadx_modules/inc/tx_port.h index 662fe08c..d207e1e7 100644 --- a/ports_arch/ARMv7-M/threadx_modules/inc/tx_port.h +++ b/ports_arch/ARMv7-M/threadx_modules/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-Mx Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-Mx Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_arch/ARMv7-M/threadx_modules/inc/txm_module_port.h b/ports_arch/ARMv7-M/threadx_modules/inc/txm_module_port.h index 249a2afa..95ca5231 100644 --- a/ports_arch/ARMv7-M/threadx_modules/inc/txm_module_port.h +++ b/ports_arch/ARMv7-M/threadx_modules/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-Mx Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-Mx Version 6.4.1 *"; #endif diff --git a/ports_arch/ARMv8-A/threadx/common/inc/tx_port.h b/ports_arch/ARMv8-A/threadx/common/inc/tx_port.h index 06e78c0b..f6d81355 100644 --- a/ports_arch/ARMv8-A/threadx/common/inc/tx_port.h +++ b/ports_arch/ARMv8-A/threadx/common/inc/tx_port.h @@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_arch/ARMv8-A/threadx_smp/common/inc/tx_port.h b/ports_arch/ARMv8-A/threadx_smp/common/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_arch/ARMv8-A/threadx_smp/common/inc/tx_port.h +++ b/ports_arch/ARMv8-A/threadx_smp/common/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_arch/ARMv8-M/threadx/inc/tx_port.h b/ports_arch/ARMv8-M/threadx/inc/tx_port.h index fcfd76af..37751bc4 100644 --- a/ports_arch/ARMv8-M/threadx/inc/tx_port.h +++ b/ports_arch/ARMv8-M/threadx/inc/tx_port.h @@ -645,7 +645,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-Mxx Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-Mxx Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_a35/ac6/inc/tx_port.h b/ports_module/cortex_a35/ac6/inc/tx_port.h index b9455c34..e7544e44 100644 --- a/ports_module/cortex_a35/ac6/inc/tx_port.h +++ b/ports_module/cortex_a35/ac6/inc/tx_port.h @@ -386,7 +386,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Modules Cortex-A35/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Modules Cortex-A35/AC6 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_module/cortex_a35/ac6/inc/txm_module_port.h b/ports_module/cortex_a35/ac6/inc/txm_module_port.h index b03fcc36..a5d6bfbc 100644 --- a/ports_module/cortex_a35/ac6/inc/txm_module_port.h +++ b/ports_module/cortex_a35/ac6/inc/txm_module_port.h @@ -278,6 +278,6 @@ ALIGN_TYPE _txm_module_manager_port_dispatch(TXM_MODULE_INSTANCE *module_instanc #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A35/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A35/AC6 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_a35/gnu/inc/tx_port.h b/ports_module/cortex_a35/gnu/inc/tx_port.h index 6412e492..979a2e62 100644 --- a/ports_module/cortex_a35/gnu/inc/tx_port.h +++ b/ports_module/cortex_a35/gnu/inc/tx_port.h @@ -386,7 +386,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Modules Cortex-A35/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Modules Cortex-A35/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_module/cortex_a35/gnu/inc/txm_module_port.h b/ports_module/cortex_a35/gnu/inc/txm_module_port.h index 75997051..37d605ac 100644 --- a/ports_module/cortex_a35/gnu/inc/txm_module_port.h +++ b/ports_module/cortex_a35/gnu/inc/txm_module_port.h @@ -278,6 +278,6 @@ ALIGN_TYPE _txm_module_manager_port_dispatch(TXM_MODULE_INSTANCE *module_instanc #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A35/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A35/GNU Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_a35_smp/ac6/inc/tx_port.h b/ports_module/cortex_a35_smp/ac6/inc/tx_port.h index b9afa89a..05bc49fb 100644 --- a/ports_module/cortex_a35_smp/ac6/inc/tx_port.h +++ b/ports_module/cortex_a35_smp/ac6/inc/tx_port.h @@ -443,7 +443,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Modules Cortex-A35-SMP/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Modules Cortex-A35-SMP/AC6 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_module/cortex_a35_smp/ac6/inc/txm_module_port.h b/ports_module/cortex_a35_smp/ac6/inc/txm_module_port.h index 950260b2..7e79d924 100644 --- a/ports_module/cortex_a35_smp/ac6/inc/txm_module_port.h +++ b/ports_module/cortex_a35_smp/ac6/inc/txm_module_port.h @@ -273,6 +273,6 @@ ALIGN_TYPE _txm_module_manager_port_dispatch(TXM_MODULE_INSTANCE *module_instanc #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A35/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A35/AC6 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_a35_smp/gnu/inc/tx_port.h b/ports_module/cortex_a35_smp/gnu/inc/tx_port.h index 196b6a2f..5c1afcd2 100644 --- a/ports_module/cortex_a35_smp/gnu/inc/tx_port.h +++ b/ports_module/cortex_a35_smp/gnu/inc/tx_port.h @@ -443,7 +443,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Modules Cortex-A35-SMP/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Modules Cortex-A35-SMP/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_module/cortex_a35_smp/gnu/inc/txm_module_port.h b/ports_module/cortex_a35_smp/gnu/inc/txm_module_port.h index 90ea079a..e735cbfa 100644 --- a/ports_module/cortex_a35_smp/gnu/inc/txm_module_port.h +++ b/ports_module/cortex_a35_smp/gnu/inc/txm_module_port.h @@ -273,6 +273,6 @@ ALIGN_TYPE _txm_module_manager_port_dispatch(TXM_MODULE_INSTANCE *module_instanc #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A35/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A35/GNU Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_a7/ac5/example_build/tx_initialize_low_level.s b/ports_module/cortex_a7/ac5/example_build/tx_initialize_low_level.s index e61c6a66..d9150dff 100644 --- a/ports_module/cortex_a7/ac5/example_build/tx_initialize_low_level.s +++ b/ports_module/cortex_a7/ac5/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/inc/tx_port.h b/ports_module/cortex_a7/ac5/inc/tx_port.h index cf4ec1b5..a7bab5f7 100644 --- a/ports_module/cortex_a7/ac5/inc/tx_port.h +++ b/ports_module/cortex_a7/ac5/inc/tx_port.h @@ -344,7 +344,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A7/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A7/AC5 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_module/cortex_a7/ac5/inc/txm_module_port.h b/ports_module/cortex_a7/ac5/inc/txm_module_port.h index ef8171d2..3ca03a08 100644 --- a/ports_module/cortex_a7/ac5/inc/txm_module_port.h +++ b/ports_module/cortex_a7/ac5/inc/txm_module_port.h @@ -406,7 +406,7 @@ UINT _txm_module_manager_inside_data_check(ULONG pointer); #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A7/MMU/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A7/MMU/AC5 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_a7/ac5/module_lib/src/txm_module_initialize.s b/ports_module/cortex_a7/ac5/module_lib/src/txm_module_initialize.s index 6b527db3..cb838377 100644 --- a/ports_module/cortex_a7/ac5/module_lib/src/txm_module_initialize.s +++ b/ports_module/cortex_a7/ac5/module_lib/src/txm_module_initialize.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_context_restore.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_context_restore.s index 72d811f1..92a2311a 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_context_restore.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_context_save.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_context_save.s index be446f3d..3993d9f0 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_context_save.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_context_restore.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_context_restore.s index a4df5c30..44233091 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_context_restore.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_context_save.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_context_save.s index 74a2d89e..eb969c1d 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_context_save.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_nesting_end.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_nesting_end.s index e443ef08..9062160c 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_nesting_end.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_nesting_start.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_nesting_start.s index 4cc5e070..a1456bd1 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_nesting_start.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_control.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_control.s index 755e0c3b..0d422e49 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_control.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_disable.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_disable.s index c617626a..5653faf4 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_disable.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_restore.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_restore.s index 8953d67e..e9f15cc6 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_restore.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_irq_nesting_end.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_irq_nesting_end.s index 0315cfe7..f458cb21 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_irq_nesting_end.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_irq_nesting_start.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_irq_nesting_start.s index 33c6abed..2f1814f8 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_irq_nesting_start.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_schedule.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_schedule.s index f1a3b466..be7a2ca7 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_schedule.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_stack_build.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_stack_build.s index 11000dae..03e24ca7 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_stack_build.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_system_return.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_system_return.s index 3af99682..01e93435 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_system_return.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_vectored_context_save.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_vectored_context_save.s index a4937e33..1e9a2f82 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_vectored_context_save.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/tx_timer_interrupt.s b/ports_module/cortex_a7/ac5/module_manager/src/tx_timer_interrupt.s index f1007c37..ce94e6e0 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/tx_timer_interrupt.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/txm_module_manager_thread_stack_build.s b/ports_module/cortex_a7/ac5/module_manager/src/txm_module_manager_thread_stack_build.s index 7b556409..675b1db6 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/txm_module_manager_thread_stack_build.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/txm_module_manager_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/ac5/module_manager/src/txm_module_manager_user_mode_entry.s b/ports_module/cortex_a7/ac5/module_manager/src/txm_module_manager_user_mode_entry.s index fa445ca1..58da85b9 100644 --- a/ports_module/cortex_a7/ac5/module_manager/src/txm_module_manager_user_mode_entry.s +++ b/ports_module/cortex_a7/ac5/module_manager/src/txm_module_manager_user_mode_entry.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/gnu/inc/tx_port.h b/ports_module/cortex_a7/gnu/inc/tx_port.h index 3bf1ce80..5f22a354 100644 --- a/ports_module/cortex_a7/gnu/inc/tx_port.h +++ b/ports_module/cortex_a7/gnu/inc/tx_port.h @@ -337,7 +337,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_module/cortex_a7/gnu/inc/txm_module_port.h b/ports_module/cortex_a7/gnu/inc/txm_module_port.h index abafb58f..db5fd862 100644 --- a/ports_module/cortex_a7/gnu/inc/txm_module_port.h +++ b/ports_module/cortex_a7/gnu/inc/txm_module_port.h @@ -409,7 +409,7 @@ UINT _txm_module_manager_inside_data_check(ULONG pointer); #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A7/MMU/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A7/MMU/GNU Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_a7/iar/example_build/tx_initialize_low_level.s b/ports_module/cortex_a7/iar/example_build/tx_initialize_low_level.s index f99b3896..28ca3030 100644 --- a/ports_module/cortex_a7/iar/example_build/tx_initialize_low_level.s +++ b/ports_module/cortex_a7/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/inc/tx_port.h b/ports_module/cortex_a7/iar/inc/tx_port.h index 165cd2ce..fe4d569d 100644 --- a/ports_module/cortex_a7/iar/inc/tx_port.h +++ b/ports_module/cortex_a7/iar/inc/tx_port.h @@ -410,7 +410,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A7/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A7/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_a7/iar/inc/txm_module_port.h b/ports_module/cortex_a7/iar/inc/txm_module_port.h index 973f8144..d66ea1ff 100644 --- a/ports_module/cortex_a7/iar/inc/txm_module_port.h +++ b/ports_module/cortex_a7/iar/inc/txm_module_port.h @@ -420,7 +420,7 @@ UINT _txm_module_manager_inside_data_check(ULONG pointer); #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A7/MMU/iar Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-A7/MMU/iar Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_context_restore.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_context_restore.s index 5355571f..2d4a1428 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_context_restore.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_context_save.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_context_save.s index 98c6c6e7..51d17e4d 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_context_save.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_context_restore.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_context_restore.s index 6e5ccb7d..77425a1e 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_context_restore.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_context_save.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_context_save.s index 485b9d28..36330436 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_context_save.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_nesting_end.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_nesting_end.s index 85a5ebf8..fe49fea3 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_nesting_end.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_nesting_start.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_nesting_start.s index beb6ee75..75e6b0d7 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_nesting_start.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_fiq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_control.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_control.s index edd916e9..94c42a69 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_control.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_disable.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_disable.s index 8decf3ed..1bbbe754 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_disable.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_restore.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_restore.s index 671a433c..65df8b7e 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_restore.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_irq_nesting_end.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_irq_nesting_end.s index 223eb441..cbee12f2 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_irq_nesting_end.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_irq_nesting_start.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_irq_nesting_start.s index eb9899e4..96a7fed4 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_irq_nesting_start.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_schedule.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_schedule.s index 6294a1f3..4b92a25b 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_schedule.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_stack_build.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_stack_build.s index 1146f3f0..fc692efc 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_stack_build.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_system_return.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_system_return.s index f573ed63..6307c693 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_system_return.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_vectored_context_save.s b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_vectored_context_save.s index 041be454..a4c6b041 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_thread_vectored_context_save.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/tx_timer_interrupt.s b/ports_module/cortex_a7/iar/module_manager/src/tx_timer_interrupt.s index dce042db..fd2c46b9 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/tx_timer_interrupt.s +++ b/ports_module/cortex_a7/iar/module_manager/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/txm_module_manager_thread_stack_build.s b/ports_module/cortex_a7/iar/module_manager/src/txm_module_manager_thread_stack_build.s index 92132b19..f0018aa0 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/txm_module_manager_thread_stack_build.s +++ b/ports_module/cortex_a7/iar/module_manager/src/txm_module_manager_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_a7/iar/module_manager/src/txm_module_manager_user_mode_entry.s b/ports_module/cortex_a7/iar/module_manager/src/txm_module_manager_user_mode_entry.s index 2ac17ff4..c3eb43da 100644 --- a/ports_module/cortex_a7/iar/module_manager/src/txm_module_manager_user_mode_entry.s +++ b/ports_module/cortex_a7/iar/module_manager/src/txm_module_manager_user_mode_entry.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_m0+/ac6/inc/tx_port.h b/ports_module/cortex_m0+/ac6/inc/tx_port.h index 4ac1790c..58ea2138 100644 --- a/ports_module/cortex_m0+/ac6/inc/tx_port.h +++ b/ports_module/cortex_m0+/ac6/inc/tx_port.h @@ -517,7 +517,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0+/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0+/AC6 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_module/cortex_m0+/ac6/inc/txm_module_port.h b/ports_module/cortex_m0+/ac6/inc/txm_module_port.h index 3f8e5732..57fca0c4 100644 --- a/ports_module/cortex_m0+/ac6/inc/txm_module_port.h +++ b/ports_module/cortex_m0+/ac6/inc/txm_module_port.h @@ -375,6 +375,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M0+/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M0+/AC6 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m0+/gnu/inc/tx_port.h b/ports_module/cortex_m0+/gnu/inc/tx_port.h index de5cd708..f037f524 100644 --- a/ports_module/cortex_m0+/gnu/inc/tx_port.h +++ b/ports_module/cortex_m0+/gnu/inc/tx_port.h @@ -531,7 +531,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0+/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0+/AC6 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_module/cortex_m0+/gnu/inc/txm_module_port.h b/ports_module/cortex_m0+/gnu/inc/txm_module_port.h index 7deec6b5..b1b55db6 100644 --- a/ports_module/cortex_m0+/gnu/inc/txm_module_port.h +++ b/ports_module/cortex_m0+/gnu/inc/txm_module_port.h @@ -375,6 +375,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M0+/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M0+/GNU Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m0+/iar/example_build/tx_initialize_low_level.s b/ports_module/cortex_m0+/iar/example_build/tx_initialize_low_level.s index 3530a97a..e26ea7f0 100644 --- a/ports_module/cortex_m0+/iar/example_build/tx_initialize_low_level.s +++ b/ports_module/cortex_m0+/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_m0+/iar/inc/tx_port.h b/ports_module/cortex_m0+/iar/inc/tx_port.h index 85da7385..f09ad44a 100644 --- a/ports_module/cortex_m0+/iar/inc/tx_port.h +++ b/ports_module/cortex_m0+/iar/inc/tx_port.h @@ -567,7 +567,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0+/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M0+/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m0+/iar/inc/txm_module_port.h b/ports_module/cortex_m0+/iar/inc/txm_module_port.h index 90f5f8a4..c06393e2 100644 --- a/ports_module/cortex_m0+/iar/inc/txm_module_port.h +++ b/ports_module/cortex_m0+/iar/inc/txm_module_port.h @@ -375,6 +375,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M0+/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M0+/IAR Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m23/ac6/inc/tx_port.h b/ports_module/cortex_m23/ac6/inc/tx_port.h index fbecf09c..1827841c 100644 --- a/ports_module/cortex_m23/ac6/inc/tx_port.h +++ b/ports_module/cortex_m23/ac6/inc/tx_port.h @@ -576,7 +576,7 @@ unsigned int was_masked; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/AC6 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m23/ac6/inc/txm_module_port.h b/ports_module/cortex_m23/ac6/inc/txm_module_port.h index 2d87149f..d7d497c4 100644 --- a/ports_module/cortex_m23/ac6/inc/txm_module_port.h +++ b/ports_module/cortex_m23/ac6/inc/txm_module_port.h @@ -356,6 +356,6 @@ ALIGN_TYPE _txm_module_manager_port_dispatch(TXM_MODULE_INSTANCE *module_instanc #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M23/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M23/AC6 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m23/gnu/inc/tx_port.h b/ports_module/cortex_m23/gnu/inc/tx_port.h index 57f28168..6fe9d273 100644 --- a/ports_module/cortex_m23/gnu/inc/tx_port.h +++ b/ports_module/cortex_m23/gnu/inc/tx_port.h @@ -487,7 +487,7 @@ unsigned int interrupt_save; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/GNU Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m23/gnu/inc/txm_module_port.h b/ports_module/cortex_m23/gnu/inc/txm_module_port.h index d6c2f1f6..d638c825 100644 --- a/ports_module/cortex_m23/gnu/inc/txm_module_port.h +++ b/ports_module/cortex_m23/gnu/inc/txm_module_port.h @@ -346,6 +346,6 @@ ALIGN_TYPE _txm_module_manager_port_dispatch(TXM_MODULE_INSTANCE *module_instanc #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M23/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M23/GNU Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m23/iar/inc/tx_port.h b/ports_module/cortex_m23/iar/inc/tx_port.h index 184144da..e4b499ae 100644 --- a/ports_module/cortex_m23/iar/inc/tx_port.h +++ b/ports_module/cortex_m23/iar/inc/tx_port.h @@ -707,7 +707,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M23/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m23/iar/inc/txm_module_port.h b/ports_module/cortex_m23/iar/inc/txm_module_port.h index 4b6ab4e9..a15cd272 100644 --- a/ports_module/cortex_m23/iar/inc/txm_module_port.h +++ b/ports_module/cortex_m23/iar/inc/txm_module_port.h @@ -349,6 +349,6 @@ ALIGN_TYPE _txm_module_manager_port_dispatch(TXM_MODULE_INSTANCE *module_instanc #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M23/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M23/IAR Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m3/ac5/example_build/tx_initialize_low_level.S b/ports_module/cortex_m3/ac5/example_build/tx_initialize_low_level.S index 8454a318..951a71d8 100644 --- a/ports_module/cortex_m3/ac5/example_build/tx_initialize_low_level.S +++ b/ports_module/cortex_m3/ac5/example_build/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_m3/ac5/inc/tx_port.h b/ports_module/cortex_m3/ac5/inc/tx_port.h index f58c17c2..c88c2977 100644 --- a/ports_module/cortex_m3/ac5/inc/tx_port.h +++ b/ports_module/cortex_m3/ac5/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m3/ac5/inc/txm_module_port.h b/ports_module/cortex_m3/ac5/inc/txm_module_port.h index 69bf2db3..83008f7d 100644 --- a/ports_module/cortex_m3/ac5/inc/txm_module_port.h +++ b/ports_module/cortex_m3/ac5/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M3 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M3 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m3/ac6/inc/tx_port.h b/ports_module/cortex_m3/ac6/inc/tx_port.h index f58c17c2..c88c2977 100644 --- a/ports_module/cortex_m3/ac6/inc/tx_port.h +++ b/ports_module/cortex_m3/ac6/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m3/ac6/inc/txm_module_port.h b/ports_module/cortex_m3/ac6/inc/txm_module_port.h index 69bf2db3..83008f7d 100644 --- a/ports_module/cortex_m3/ac6/inc/txm_module_port.h +++ b/ports_module/cortex_m3/ac6/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M3 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M3 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m3/gnu/inc/tx_port.h b/ports_module/cortex_m3/gnu/inc/tx_port.h index f58c17c2..c88c2977 100644 --- a/ports_module/cortex_m3/gnu/inc/tx_port.h +++ b/ports_module/cortex_m3/gnu/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m3/gnu/inc/txm_module_port.h b/ports_module/cortex_m3/gnu/inc/txm_module_port.h index 69bf2db3..83008f7d 100644 --- a/ports_module/cortex_m3/gnu/inc/txm_module_port.h +++ b/ports_module/cortex_m3/gnu/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M3 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M3 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m3/iar/example_build/tx_initialize_low_level.s b/ports_module/cortex_m3/iar/example_build/tx_initialize_low_level.s index 7c4cc508..0491ca43 100644 --- a/ports_module/cortex_m3/iar/example_build/tx_initialize_low_level.s +++ b/ports_module/cortex_m3/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_m3/iar/inc/tx_port.h b/ports_module/cortex_m3/iar/inc/tx_port.h index f58c17c2..c88c2977 100644 --- a/ports_module/cortex_m3/iar/inc/tx_port.h +++ b/ports_module/cortex_m3/iar/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M3 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m3/iar/inc/txm_module_port.h b/ports_module/cortex_m3/iar/inc/txm_module_port.h index 69bf2db3..83008f7d 100644 --- a/ports_module/cortex_m3/iar/inc/txm_module_port.h +++ b/ports_module/cortex_m3/iar/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M3 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M3 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m33/ac6/inc/tx_port.h b/ports_module/cortex_m33/ac6/inc/tx_port.h index ba6b6386..4678c087 100644 --- a/ports_module/cortex_m33/ac6/inc/tx_port.h +++ b/ports_module/cortex_m33/ac6/inc/tx_port.h @@ -705,7 +705,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m33/ac6/inc/txm_module_port.h b/ports_module/cortex_m33/ac6/inc/txm_module_port.h index 0c24680e..20be7d61 100644 --- a/ports_module/cortex_m33/ac6/inc/txm_module_port.h +++ b/ports_module/cortex_m33/ac6/inc/txm_module_port.h @@ -356,6 +356,6 @@ ALIGN_TYPE _txm_module_manager_port_dispatch(TXM_MODULE_INSTANCE *module_instanc #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M33/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M33/AC6 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m33/gnu/inc/tx_port.h b/ports_module/cortex_m33/gnu/inc/tx_port.h index ba6b6386..4678c087 100644 --- a/ports_module/cortex_m33/gnu/inc/tx_port.h +++ b/ports_module/cortex_m33/gnu/inc/tx_port.h @@ -705,7 +705,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m33/gnu/inc/txm_module_port.h b/ports_module/cortex_m33/gnu/inc/txm_module_port.h index 3801a6ca..0c87bb95 100644 --- a/ports_module/cortex_m33/gnu/inc/txm_module_port.h +++ b/ports_module/cortex_m33/gnu/inc/txm_module_port.h @@ -350,6 +350,6 @@ ALIGN_TYPE _txm_module_manager_port_dispatch(TXM_MODULE_INSTANCE *module_instanc #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M33/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M33/GNU Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m33/iar/inc/tx_port.h b/ports_module/cortex_m33/iar/inc/tx_port.h index ba6b6386..4678c087 100644 --- a/ports_module/cortex_m33/iar/inc/tx_port.h +++ b/ports_module/cortex_m33/iar/inc/tx_port.h @@ -705,7 +705,7 @@ VOID _tx_thread_interrupt_restore(UIN #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M33 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m33/iar/inc/txm_module_port.h b/ports_module/cortex_m33/iar/inc/txm_module_port.h index d82b30a0..c64b9800 100644 --- a/ports_module/cortex_m33/iar/inc/txm_module_port.h +++ b/ports_module/cortex_m33/iar/inc/txm_module_port.h @@ -351,6 +351,6 @@ ALIGN_TYPE _txm_module_manager_port_dispatch(TXM_MODULE_INSTANCE *module_instanc #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M33/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M33/IAR Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m4/ac5/inc/tx_port.h b/ports_module/cortex_m4/ac5/inc/tx_port.h index d0948469..20c278aa 100644 --- a/ports_module/cortex_m4/ac5/inc/tx_port.h +++ b/ports_module/cortex_m4/ac5/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m4/ac5/inc/txm_module_port.h b/ports_module/cortex_m4/ac5/inc/txm_module_port.h index eba3f1fe..1ef19ea5 100644 --- a/ports_module/cortex_m4/ac5/inc/txm_module_port.h +++ b/ports_module/cortex_m4/ac5/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M4 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M4 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m4/ac6/inc/tx_port.h b/ports_module/cortex_m4/ac6/inc/tx_port.h index d0948469..20c278aa 100644 --- a/ports_module/cortex_m4/ac6/inc/tx_port.h +++ b/ports_module/cortex_m4/ac6/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m4/ac6/inc/txm_module_port.h b/ports_module/cortex_m4/ac6/inc/txm_module_port.h index eba3f1fe..1ef19ea5 100644 --- a/ports_module/cortex_m4/ac6/inc/txm_module_port.h +++ b/ports_module/cortex_m4/ac6/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M4 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M4 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m4/gnu/inc/tx_port.h b/ports_module/cortex_m4/gnu/inc/tx_port.h index d0948469..20c278aa 100644 --- a/ports_module/cortex_m4/gnu/inc/tx_port.h +++ b/ports_module/cortex_m4/gnu/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m4/gnu/inc/txm_module_port.h b/ports_module/cortex_m4/gnu/inc/txm_module_port.h index eba3f1fe..1ef19ea5 100644 --- a/ports_module/cortex_m4/gnu/inc/txm_module_port.h +++ b/ports_module/cortex_m4/gnu/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M4 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M4 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m4/iar/inc/tx_port.h b/ports_module/cortex_m4/iar/inc/tx_port.h index d0948469..20c278aa 100644 --- a/ports_module/cortex_m4/iar/inc/tx_port.h +++ b/ports_module/cortex_m4/iar/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M4 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m4/iar/inc/txm_module_port.h b/ports_module/cortex_m4/iar/inc/txm_module_port.h index eba3f1fe..1ef19ea5 100644 --- a/ports_module/cortex_m4/iar/inc/txm_module_port.h +++ b/ports_module/cortex_m4/iar/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M4 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M4 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m7/ac5/inc/tx_port.h b/ports_module/cortex_m7/ac5/inc/tx_port.h index dc713c2a..fa52e489 100644 --- a/ports_module/cortex_m7/ac5/inc/tx_port.h +++ b/ports_module/cortex_m7/ac5/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m7/ac5/inc/txm_module_port.h b/ports_module/cortex_m7/ac5/inc/txm_module_port.h index 4cc28d17..3f8f726f 100644 --- a/ports_module/cortex_m7/ac5/inc/txm_module_port.h +++ b/ports_module/cortex_m7/ac5/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M7 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M7 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m7/ac6/inc/tx_port.h b/ports_module/cortex_m7/ac6/inc/tx_port.h index dc713c2a..fa52e489 100644 --- a/ports_module/cortex_m7/ac6/inc/tx_port.h +++ b/ports_module/cortex_m7/ac6/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m7/ac6/inc/txm_module_port.h b/ports_module/cortex_m7/ac6/inc/txm_module_port.h index 4cc28d17..3f8f726f 100644 --- a/ports_module/cortex_m7/ac6/inc/txm_module_port.h +++ b/ports_module/cortex_m7/ac6/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M7 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M7 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m7/gnu/inc/tx_port.h b/ports_module/cortex_m7/gnu/inc/tx_port.h index dc713c2a..fa52e489 100644 --- a/ports_module/cortex_m7/gnu/inc/tx_port.h +++ b/ports_module/cortex_m7/gnu/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m7/gnu/inc/txm_module_port.h b/ports_module/cortex_m7/gnu/inc/txm_module_port.h index 4cc28d17..3f8f726f 100644 --- a/ports_module/cortex_m7/gnu/inc/txm_module_port.h +++ b/ports_module/cortex_m7/gnu/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M7 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M7 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_m7/iar/inc/tx_port.h b/ports_module/cortex_m7/iar/inc/tx_port.h index dc713c2a..fa52e489 100644 --- a/ports_module/cortex_m7/iar/inc/tx_port.h +++ b/ports_module/cortex_m7/iar/inc/tx_port.h @@ -719,7 +719,7 @@ void tx_thread_fpu_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-M7 Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_m7/iar/inc/txm_module_port.h b/ports_module/cortex_m7/iar/inc/txm_module_port.h index 4cc28d17..3f8f726f 100644 --- a/ports_module/cortex_m7/iar/inc/txm_module_port.h +++ b/ports_module/cortex_m7/iar/inc/txm_module_port.h @@ -463,6 +463,6 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M7 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-M7 Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_r4/ac6/inc/tx_port.h b/ports_module/cortex_r4/ac6/inc/tx_port.h index 5072d847..97da2970 100644 --- a/ports_module/cortex_r4/ac6/inc/tx_port.h +++ b/ports_module/cortex_r4/ac6/inc/tx_port.h @@ -345,7 +345,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/AC6 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/AC6 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_module/cortex_r4/ac6/inc/txm_module_port.h b/ports_module/cortex_r4/ac6/inc/txm_module_port.h index b75bc163..b6e8c2bb 100644 --- a/ports_module/cortex_r4/ac6/inc/txm_module_port.h +++ b/ports_module/cortex_r4/ac6/inc/txm_module_port.h @@ -359,7 +359,7 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-R4/MPU/ARM Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-R4/MPU/ARM Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_r4/ac6/module_lib/src/txm_module_initialize.S b/ports_module/cortex_r4/ac6/module_lib/src/txm_module_initialize.S index a786ec18..051f6f66 100644 --- a/ports_module/cortex_r4/ac6/module_lib/src/txm_module_initialize.S +++ b/ports_module/cortex_r4/ac6/module_lib/src/txm_module_initialize.S @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/example_build/tx_initialize_low_level.s b/ports_module/cortex_r4/iar/example_build/tx_initialize_low_level.s index f011aefd..b65b7a82 100644 --- a/ports_module/cortex_r4/iar/example_build/tx_initialize_low_level.s +++ b/ports_module/cortex_r4/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/inc/tx_port.h b/ports_module/cortex_r4/iar/inc/tx_port.h index 068ac023..98003c3d 100644 --- a/ports_module/cortex_r4/iar/inc/tx_port.h +++ b/ports_module/cortex_r4/iar/inc/tx_port.h @@ -394,7 +394,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-R4/IAR Version 6.4.1 *"; #else #ifdef TX_MISRA_ENABLE extern CHAR _tx_version_id[100]; diff --git a/ports_module/cortex_r4/iar/inc/txm_module_port.h b/ports_module/cortex_r4/iar/inc/txm_module_port.h index 3bca628a..ae36cc13 100644 --- a/ports_module/cortex_r4/iar/inc/txm_module_port.h +++ b/ports_module/cortex_r4/iar/inc/txm_module_port.h @@ -340,7 +340,7 @@ UINT _txm_module_manager_inside_data_check(TXM_MODULE_INSTANCE *module_instance #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-R4/MPU/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module Cortex-R4/MPU/IAR Version 6.4.1 *"; #endif diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_context_restore.s b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_context_restore.s index ed56874f..5234d948 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_context_restore.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_context_save.s b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_context_save.s index 9051722d..d8aa33a1 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_context_save.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_control.s b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_control.s index 960fc8a7..a6fbb0f8 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_control.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_disable.s b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_disable.s index e07fce9f..7f9a2b2c 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_disable.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_restore.s b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_restore.s index 66fdf46c..f862c87d 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_restore.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_irq_nesting_end.s b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_irq_nesting_end.s index a98175a4..85c03c5f 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_irq_nesting_end.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_irq_nesting_start.s b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_irq_nesting_start.s index ef07282f..97bc7029 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_irq_nesting_start.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_schedule.s b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_schedule.s index d1992ec6..72270475 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_schedule.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_stack_build.s b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_stack_build.s index 3f021f4d..502c3529 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_stack_build.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_system_return.s b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_system_return.s index 55b7942b..af808d42 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_system_return.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_vectored_context_save.s b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_vectored_context_save.s index 36968384..d5f077b2 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_thread_vectored_context_save.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/tx_timer_interrupt.s b/ports_module/cortex_r4/iar/module_manager/src/tx_timer_interrupt.s index 85485c2e..5d4efcd8 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/tx_timer_interrupt.s +++ b/ports_module/cortex_r4/iar/module_manager/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/txm_module_manager_thread_stack_build.s b/ports_module/cortex_r4/iar/module_manager/src/txm_module_manager_thread_stack_build.s index 01a5aad3..a2aa765a 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/txm_module_manager_thread_stack_build.s +++ b/ports_module/cortex_r4/iar/module_manager/src/txm_module_manager_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/cortex_r4/iar/module_manager/src/txm_module_manager_user_mode_entry.s b/ports_module/cortex_r4/iar/module_manager/src/txm_module_manager_user_mode_entry.s index e5ff6278..263a13cb 100644 --- a/ports_module/cortex_r4/iar/module_manager/src/txm_module_manager_user_mode_entry.s +++ b/ports_module/cortex_r4/iar/module_manager/src/txm_module_manager_user_mode_entry.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/rxv2/iar/example_build/tx_initialize_low_level.s b/ports_module/rxv2/iar/example_build/tx_initialize_low_level.s index 507cb548..391e9c5c 100644 --- a/ports_module/rxv2/iar/example_build/tx_initialize_low_level.s +++ b/ports_module/rxv2/iar/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/rxv2/iar/inc/tx_port.h b/ports_module/rxv2/iar/inc/tx_port.h index 35008645..2d6d3ded 100644 --- a/ports_module/rxv2/iar/inc/tx_port.h +++ b/ports_module/rxv2/iar/inc/tx_port.h @@ -287,7 +287,7 @@ static void _tx_thread_system_return_inline(void) #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv2/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX RXv2/IAR Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_module/rxv2/iar/inc/txm_module_port.h b/ports_module/rxv2/iar/inc/txm_module_port.h index ccd9f67d..a4b6a9ae 100644 --- a/ports_module/rxv2/iar/inc/txm_module_port.h +++ b/ports_module/rxv2/iar/inc/txm_module_port.h @@ -395,6 +395,6 @@ VOID _txm_module_manager_setup_mpu_registers(TXM_MODULE_INSTANCE *module_instan #define TXM_MODULE_MANAGER_VERSION_ID \ CHAR _txm_module_manager_version_id[] = \ - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module RXv2/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Module RXv2/IAR Version 6.4.1 *"; #endif diff --git a/ports_module/rxv2/iar/module_manager/src/tx_thread_context_restore.s b/ports_module/rxv2/iar/module_manager/src/tx_thread_context_restore.s index 2795ea99..b9dc97da 100644 --- a/ports_module/rxv2/iar/module_manager/src/tx_thread_context_restore.s +++ b/ports_module/rxv2/iar/module_manager/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/rxv2/iar/module_manager/src/tx_thread_context_save.s b/ports_module/rxv2/iar/module_manager/src/tx_thread_context_save.s index c154eb58..0d461baa 100644 --- a/ports_module/rxv2/iar/module_manager/src/tx_thread_context_save.s +++ b/ports_module/rxv2/iar/module_manager/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/rxv2/iar/module_manager/src/tx_thread_interrupt_control.s b/ports_module/rxv2/iar/module_manager/src/tx_thread_interrupt_control.s index b7199a21..558b9153 100644 --- a/ports_module/rxv2/iar/module_manager/src/tx_thread_interrupt_control.s +++ b/ports_module/rxv2/iar/module_manager/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/rxv2/iar/module_manager/src/tx_thread_stack_build.s b/ports_module/rxv2/iar/module_manager/src/tx_thread_stack_build.s index edd750a3..be33d407 100644 --- a/ports_module/rxv2/iar/module_manager/src/tx_thread_stack_build.s +++ b/ports_module/rxv2/iar/module_manager/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/rxv2/iar/module_manager/src/tx_thread_system_return.s b/ports_module/rxv2/iar/module_manager/src/tx_thread_system_return.s index 666e458e..714e1276 100644 --- a/ports_module/rxv2/iar/module_manager/src/tx_thread_system_return.s +++ b/ports_module/rxv2/iar/module_manager/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_module/rxv2/iar/module_manager/src/tx_timer_interrupt.s b/ports_module/rxv2/iar/module_manager/src/tx_timer_interrupt.s index d7a2ffc4..1b736519 100644 --- a/ports_module/rxv2/iar/module_manager/src/tx_timer_interrupt.s +++ b/ports_module/rxv2/iar/module_manager/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/example_build/sample_threadx/tx_initialize_low_level.s b/ports_smp/arc_hs_smp/metaware/example_build/sample_threadx/tx_initialize_low_level.s index d94115a1..60fa4f6f 100644 --- a/ports_smp/arc_hs_smp/metaware/example_build/sample_threadx/tx_initialize_low_level.s +++ b/ports_smp/arc_hs_smp/metaware/example_build/sample_threadx/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/inc/tx_port.h b/ports_smp/arc_hs_smp/metaware/inc/tx_port.h index 67d6c9d8..429e87b8 100644 --- a/ports_smp/arc_hs_smp/metaware/inc/tx_port.h +++ b/ports_smp/arc_hs_smp/metaware/inc/tx_port.h @@ -403,7 +403,7 @@ typedef struct TX_THREAD_SMP_PROTECT_STRUCT #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/ARC_HS/MetaWare Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/ARC_HS/MetaWare Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_context_restore.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_context_restore.s index fa40e631..4b50af87 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_context_restore.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_context_save.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_context_save.s index 353da0a4..a54c4435 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_context_save.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_interrupt_control.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_interrupt_control.s index a38a42f8..9fe6e34f 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_interrupt_control.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_schedule.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_schedule.s index b0a46171..8575464b 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_schedule.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_core_get.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_core_get.s index e61108d9..74818227 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_core_get.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_core_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_core_preempt.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_core_preempt.s index fc62373e..35968588 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_core_preempt.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_core_preempt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_current_state_get.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_current_state_get.s index f4f0e4b5..0d26cb49 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_current_state_get.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_current_state_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_current_thread_get.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_current_thread_get.s index d493e6f6..cb981dd0 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_current_thread_get.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_current_thread_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_initialize_wait.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_initialize_wait.s index 8aeb1204..5ec92e24 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_initialize_wait.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_initialize_wait.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_low_level_initialize.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_low_level_initialize.s index d1c06269..a6a0221c 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_low_level_initialize.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_low_level_initialize.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_protect.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_protect.s index 3559b765..2d9c1034 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_protect.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_protect.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_time_get.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_time_get.s index 696cb8ba..0ff6f0c6 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_time_get.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_time_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_unprotect.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_unprotect.s index ba03c61c..7c5860d1 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_unprotect.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_smp_unprotect.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_stack_build.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_stack_build.s index 3b465697..aca1d5c4 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_stack_build.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_thread_system_return.s b/ports_smp/arc_hs_smp/metaware/src/tx_thread_system_return.s index c9a81eb0..775c0db9 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_thread_system_return.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/arc_hs_smp/metaware/src/tx_timer_interrupt.s b/ports_smp/arc_hs_smp/metaware/src/tx_timer_interrupt.s index 86bc0c96..bf013003 100644 --- a/ports_smp/arc_hs_smp/metaware/src/tx_timer_interrupt.s +++ b/ports_smp/arc_hs_smp/metaware/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a34_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a34_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a34_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a34_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a34_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a34_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a34_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a34_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a35_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a35_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a35_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a35_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a35_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a35_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a35_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a35_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a53_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a53_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a53_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a53_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a53_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a53_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a53_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a53_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a55_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a55_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a55_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a55_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a55_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a55_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a55_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a55_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a57_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a57_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a57_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a57_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a57_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a57_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a57_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a57_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a5_smp/ac5/example_build/sample_threadx/tx_initialize_low_level.s b/ports_smp/cortex_a5_smp/ac5/example_build/sample_threadx/tx_initialize_low_level.s index ac48b4c4..1bf6a105 100644 --- a/ports_smp/cortex_a5_smp/ac5/example_build/sample_threadx/tx_initialize_low_level.s +++ b/ports_smp/cortex_a5_smp/ac5/example_build/sample_threadx/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/inc/tx_port.h b/ports_smp/cortex_a5_smp/ac5/inc/tx_port.h index 12579abb..51252277 100644 --- a/ports_smp/cortex_a5_smp/ac5/inc/tx_port.h +++ b/ports_smp/cortex_a5_smp/ac5/inc/tx_port.h @@ -396,7 +396,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A5/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A5/AC5 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_context_restore.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_context_restore.s index 16d60b4a..c36e57b5 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_context_restore.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_context_save.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_context_save.s index fcfe690a..1f397a0c 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_context_save.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_control.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_control.s index bb988026..2f11cb0d 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_control.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_disable.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_disable.s index b50f5c09..74113a37 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_disable.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_restore.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_restore.s index ecf094ec..feb33697 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_restore.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_irq_nesting_end.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_irq_nesting_end.s index 755d3940..3be434aa 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_irq_nesting_end.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_irq_nesting_start.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_irq_nesting_start.s index cfff450a..0b7b2039 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_irq_nesting_start.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_schedule.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_schedule.s index 323b0693..9ec7844e 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_schedule.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_core_get.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_core_get.s index 6eae5a0b..fb833b88 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_core_get.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_core_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_core_preempt.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_core_preempt.s index 38aad3e5..e0dde774 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_core_preempt.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_core_preempt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_current_state_get.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_current_state_get.s index caa3be81..34e33c1f 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_current_state_get.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_current_state_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_current_thread_get.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_current_thread_get.s index 0745c146..7f7d3bfd 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_current_thread_get.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_current_thread_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_initialize_wait.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_initialize_wait.s index 87a36260..6077bc0b 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_initialize_wait.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_initialize_wait.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_low_level_initialize.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_low_level_initialize.s index 334ff03c..c74dede1 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_low_level_initialize.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_low_level_initialize.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_protect.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_protect.s index 516d4705..9743dc28 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_protect.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_protect.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h index 50b02ede..192df07b 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_time_get.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_time_get.s index e308131f..4dec5889 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_time_get.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_time_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_unprotect.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_unprotect.s index c8794a7a..96744bd3 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_unprotect.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_smp_unprotect.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_stack_build.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_stack_build.s index 38924734..826bdadd 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_stack_build.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_system_return.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_system_return.s index 12b3c0b1..253c7a15 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_system_return.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_vectored_context_save.s b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_vectored_context_save.s index 29dc6293..ffc26813 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_thread_vectored_context_save.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/ac5/src/tx_timer_interrupt.s b/ports_smp/cortex_a5_smp/ac5/src/tx_timer_interrupt.s index 19b5b48c..525d7257 100644 --- a/ports_smp/cortex_a5_smp/ac5/src/tx_timer_interrupt.s +++ b/ports_smp/cortex_a5_smp/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/example_build/tx_initialize_low_level.s b/ports_smp/cortex_a5_smp/gnu/example_build/tx_initialize_low_level.s index 770b96a1..1aa56dae 100644 --- a/ports_smp/cortex_a5_smp/gnu/example_build/tx_initialize_low_level.s +++ b/ports_smp/cortex_a5_smp/gnu/example_build/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a5_smp/gnu/inc/tx_port.h index e85e183e..262cc979 100644 --- a/ports_smp/cortex_a5_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a5_smp/gnu/inc/tx_port.h @@ -399,7 +399,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A5/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A5/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_context_restore.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_context_restore.S index be2f9654..c652d632 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_context_restore.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_context_save.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_context_save.S index f90077e3..df84cacf 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_context_save.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_control.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_control.S index 11a03802..22a89af5 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_control.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_disable.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_disable.S index 7d72402a..166cb9ed 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_disable.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_disable.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_restore.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_restore.S index 9968bc94..022a1c6b 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_restore.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_interrupt_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_irq_nesting_end.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_irq_nesting_end.S index eb5a3ad6..5408f048 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_irq_nesting_end.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_irq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_irq_nesting_start.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_irq_nesting_start.S index 8adae9c2..a8c386f9 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_irq_nesting_start.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_irq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_schedule.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_schedule.S index 09b57e96..26ab7c03 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_schedule.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_core_get.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_core_get.S index c903d325..20569ffc 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_core_get.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_core_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_core_preempt.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_core_preempt.S index ddc1adb3..9e709411 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_core_preempt.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_core_preempt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_current_state_get.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_current_state_get.S index b16cf9cd..193749c6 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_current_state_get.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_current_state_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_current_thread_get.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_current_thread_get.S index ccf0bc60..ddb46643 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_current_thread_get.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_current_thread_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_initialize_wait.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_initialize_wait.S index d09c4314..78ff9b9d 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_initialize_wait.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_initialize_wait.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_low_level_initialize.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_low_level_initialize.S index db111f14..629fb07b 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_low_level_initialize.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_low_level_initialize.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_protect.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_protect.S index 050e7468..cb4f7837 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_protect.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_protect.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h index e5170ad4..7ac4ad4e 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_time_get.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_time_get.S index 1e3fff9d..7daa2932 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_time_get.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_time_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_unprotect.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_unprotect.S index 2994a729..f10efb7e 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_unprotect.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_smp_unprotect.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_stack_build.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_stack_build.S index 13cb6f56..88978868 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_stack_build.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_system_return.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_system_return.S index 08e36167..f6dad9f4 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_system_return.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_vectored_context_save.S b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_vectored_context_save.S index 9393d967..06fb49c1 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_thread_vectored_context_save.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_thread_vectored_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5_smp/gnu/src/tx_timer_interrupt.S b/ports_smp/cortex_a5_smp/gnu/src/tx_timer_interrupt.S index 3d992db7..c72b9619 100644 --- a/ports_smp/cortex_a5_smp/gnu/src/tx_timer_interrupt.S +++ b/ports_smp/cortex_a5_smp/gnu/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a5x_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a5x_smp/ac6/inc/tx_port.h index 96d8aec4..f102f5bc 100644 --- a/ports_smp/cortex_a5x_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a5x_smp/ac6/inc/tx_port.h @@ -423,7 +423,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 1996-2019 Express Logic Inc. * ThreadX Cortex-A5x-SMP/AC6 Version 6.4.0 *"; + "Copyright (c) 1996-2019 Express Logic Inc. * ThreadX Cortex-A5x-SMP/AC6 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a5x_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a5x_smp/gnu/inc/tx_port.h index 874f895c..5afe5acc 100644 --- a/ports_smp/cortex_a5x_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a5x_smp/gnu/inc/tx_port.h @@ -420,7 +420,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5x-SMP/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5x-SMP/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a5x_smp/green/inc/tx_port.h b/ports_smp/cortex_a5x_smp/green/inc/tx_port.h index 433ffd0f..6fddf246 100644 --- a/ports_smp/cortex_a5x_smp/green/inc/tx_port.h +++ b/ports_smp/cortex_a5x_smp/green/inc/tx_port.h @@ -443,7 +443,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5x-SMP/GHS Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5x-SMP/GHS Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a5x_smp/iar/inc/tx_port.h b/ports_smp/cortex_a5x_smp/iar/inc/tx_port.h index a61d86db..bec65636 100644 --- a/ports_smp/cortex_a5x_smp/iar/inc/tx_port.h +++ b/ports_smp/cortex_a5x_smp/iar/inc/tx_port.h @@ -446,7 +446,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5x-SMP/IAR Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5x-SMP/IAR Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a65_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a65_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a65_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a65_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a65_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a65_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a65_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a65_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a65ae_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a65ae_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a65ae_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a65ae_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a65ae_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a65ae_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a65ae_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a65ae_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a72_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a72_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a72_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a72_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a72_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a72_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a72_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a72_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a73_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a73_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a73_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a73_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a73_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a73_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a73_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a73_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a75_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a75_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a75_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a75_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a75_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a75_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a75_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a75_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a76_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a76_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a76_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a76_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a76_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a76_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a76_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a76_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a76ae_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a76ae_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a76ae_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a76ae_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a76ae_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a76ae_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a76ae_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a76ae_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a77_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a77_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a77_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a77_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a77_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a77_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a77_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a77_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a78_smp/ac6/inc/tx_port.h b/ports_smp/cortex_a78_smp/ac6/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a78_smp/ac6/inc/tx_port.h +++ b/ports_smp/cortex_a78_smp/ac6/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a78_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a78_smp/gnu/inc/tx_port.h index d07413a3..4eb913f4 100644 --- a/ports_smp/cortex_a78_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a78_smp/gnu/inc/tx_port.h @@ -419,7 +419,7 @@ VOID tx_thread_fp_disable(VOID); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A-SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a7_smp/ac5/example_build/sample_threadx/tx_initialize_low_level.s b/ports_smp/cortex_a7_smp/ac5/example_build/sample_threadx/tx_initialize_low_level.s index bc958dcb..21326e78 100644 --- a/ports_smp/cortex_a7_smp/ac5/example_build/sample_threadx/tx_initialize_low_level.s +++ b/ports_smp/cortex_a7_smp/ac5/example_build/sample_threadx/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/inc/tx_port.h b/ports_smp/cortex_a7_smp/ac5/inc/tx_port.h index 64d22cf6..8781ae01 100644 --- a/ports_smp/cortex_a7_smp/ac5/inc/tx_port.h +++ b/ports_smp/cortex_a7_smp/ac5/inc/tx_port.h @@ -396,7 +396,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A7/AC5 Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A7/AC5 Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_context_restore.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_context_restore.s index f9a6fc53..1ba569eb 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_context_restore.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_context_save.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_context_save.s index c3a3fa62..7a36f4af 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_context_save.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_control.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_control.s index 66a11f33..2cfad3fe 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_control.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_disable.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_disable.s index a21cef47..3a22d653 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_disable.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_restore.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_restore.s index 37e6b7c0..71ecfc9b 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_restore.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_irq_nesting_end.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_irq_nesting_end.s index 935c157f..2f0ff9aa 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_irq_nesting_end.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_irq_nesting_start.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_irq_nesting_start.s index 0a83d949..83b26693 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_irq_nesting_start.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_schedule.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_schedule.s index 1ce83fcf..603ab13f 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_schedule.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_core_get.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_core_get.s index dceee43f..42f39e4c 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_core_get.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_core_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_core_preempt.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_core_preempt.s index c080f5bd..9a1f6e77 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_core_preempt.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_core_preempt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_current_state_get.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_current_state_get.s index b4bfbacb..3883087a 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_current_state_get.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_current_state_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_current_thread_get.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_current_thread_get.s index 5e747df9..34e1e44b 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_current_thread_get.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_current_thread_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_initialize_wait.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_initialize_wait.s index fe946aee..973cb472 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_initialize_wait.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_initialize_wait.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_low_level_initialize.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_low_level_initialize.s index c078e3a7..93830174 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_low_level_initialize.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_low_level_initialize.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_protect.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_protect.s index 8f5a781a..2ed8aa45 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_protect.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_protect.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h index 7f6d2ce1..e06d6e4c 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_time_get.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_time_get.s index ddc5c2bf..2b504ce2 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_time_get.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_time_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_unprotect.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_unprotect.s index 9073ff17..ef5de38b 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_unprotect.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_smp_unprotect.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_stack_build.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_stack_build.s index 70542352..b79f82c7 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_stack_build.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_system_return.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_system_return.s index d55814e3..f869fcbe 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_system_return.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_vectored_context_save.s b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_vectored_context_save.s index 45660248..f73ad98a 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_thread_vectored_context_save.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/ac5/src/tx_timer_interrupt.s b/ports_smp/cortex_a7_smp/ac5/src/tx_timer_interrupt.s index d59a71e3..2192cb99 100644 --- a/ports_smp/cortex_a7_smp/ac5/src/tx_timer_interrupt.s +++ b/ports_smp/cortex_a7_smp/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/example_build/tx_initialize_low_level.S b/ports_smp/cortex_a7_smp/gnu/example_build/tx_initialize_low_level.S index 823b8d26..7612b876 100644 --- a/ports_smp/cortex_a7_smp/gnu/example_build/tx_initialize_low_level.S +++ b/ports_smp/cortex_a7_smp/gnu/example_build/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a7_smp/gnu/inc/tx_port.h index aec63286..0334636e 100644 --- a/ports_smp/cortex_a7_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a7_smp/gnu/inc/tx_port.h @@ -394,7 +394,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A7/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A7/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_context_restore.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_context_restore.S index 21d61466..a678d648 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_context_restore.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_context_save.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_context_save.S index cce4f3a7..c34d4a6d 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_context_save.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_control.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_control.S index 77c80c93..6823ead6 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_control.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_disable.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_disable.S index 8ab1ef84..46a3ac68 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_disable.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_disable.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_restore.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_restore.S index 9aef13bd..2c10b777 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_restore.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_interrupt_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_irq_nesting_end.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_irq_nesting_end.S index 7892c942..b0fda3ff 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_irq_nesting_end.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_irq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_irq_nesting_start.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_irq_nesting_start.S index 2fb4df7a..c275b69c 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_irq_nesting_start.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_irq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_schedule.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_schedule.S index fcab89d7..3e9d8c8e 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_schedule.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_core_get.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_core_get.S index 49cbd7ac..a66cefec 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_core_get.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_core_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_core_preempt.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_core_preempt.S index 4b6c4b4f..c20c4201 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_core_preempt.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_core_preempt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_current_state_get.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_current_state_get.S index f5bbf07c..2dcae8d4 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_current_state_get.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_current_state_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_current_thread_get.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_current_thread_get.S index 4c3a5f2e..dc5ceb9e 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_current_thread_get.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_current_thread_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_initialize_wait.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_initialize_wait.S index ee9bc165..f15f1623 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_initialize_wait.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_initialize_wait.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_low_level_initialize.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_low_level_initialize.S index 64fe15d4..652056f7 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_low_level_initialize.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_low_level_initialize.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_protect.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_protect.S index 212f092e..bf19e812 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_protect.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_protect.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h index 0d34c345..19f8a33a 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_time_get.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_time_get.S index 4206590a..f936b93e 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_time_get.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_time_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_unprotect.s b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_unprotect.s index 888b9e23..d731b82f 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_unprotect.s +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_smp_unprotect.s @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_stack_build.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_stack_build.S index b0737a89..11e860fd 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_stack_build.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_system_return.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_system_return.S index cbfb429a..a6f07a7b 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_system_return.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_vectored_context_save.S b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_vectored_context_save.S index a0ef9910..5e487f83 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_thread_vectored_context_save.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_thread_vectored_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a7_smp/gnu/src/tx_timer_interrupt.S b/ports_smp/cortex_a7_smp/gnu/src/tx_timer_interrupt.S index 5d79580c..4b072ae4 100644 --- a/ports_smp/cortex_a7_smp/gnu/src/tx_timer_interrupt.S +++ b/ports_smp/cortex_a7_smp/gnu/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/inc/tx_port.h b/ports_smp/cortex_a9_smp/ac5/inc/tx_port.h index 6ec6ecb5..3d1ec8a1 100644 --- a/ports_smp/cortex_a9_smp/ac5/inc/tx_port.h +++ b/ports_smp/cortex_a9_smp/ac5/inc/tx_port.h @@ -401,7 +401,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A9/AC5 Version Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A9/AC5 Version Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_initialize_low_level.s b/ports_smp/cortex_a9_smp/ac5/src/tx_initialize_low_level.s index 83ab0477..cedbc1b3 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_initialize_low_level.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_initialize_low_level.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_context_restore.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_context_restore.s index 56f4a564..54d7df4b 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_context_restore.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_context_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_context_save.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_context_save.s index 75e2649d..9d1d0e9b 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_context_save.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_control.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_control.s index c5bc53ae..6b1c707e 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_control.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_control.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_disable.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_disable.s index 737679bf..d6489ae9 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_disable.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_disable.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_restore.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_restore.s index a2ee241d..0253399f 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_restore.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_interrupt_restore.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_irq_nesting_end.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_irq_nesting_end.s index 5406f4e8..e42fc534 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_irq_nesting_end.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_irq_nesting_end.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_irq_nesting_start.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_irq_nesting_start.s index 61640d53..3eff0a0a 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_irq_nesting_start.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_irq_nesting_start.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_schedule.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_schedule.s index 099f5b0e..94b69738 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_schedule.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_schedule.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_core_get.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_core_get.s index c8406c7d..721d5ca3 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_core_get.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_core_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_core_preempt.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_core_preempt.s index 67b47cb7..a79a172b 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_core_preempt.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_core_preempt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_current_state_get.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_current_state_get.s index 62199b11..64d27e5b 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_current_state_get.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_current_state_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_current_thread_get.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_current_thread_get.s index 63f3dcdc..1af00b41 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_current_thread_get.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_current_thread_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_initialize_wait.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_initialize_wait.s index 608e9b75..f3485825 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_initialize_wait.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_initialize_wait.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_low_level_initialize.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_low_level_initialize.s index c6724ca7..11117444 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_low_level_initialize.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_low_level_initialize.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_protect.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_protect.s index 987a3707..066d84b4 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_protect.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_protect.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h index 50b02ede..192df07b 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_protection_wait_list_macros.h @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_time_get.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_time_get.s index 9ae2f90d..cb615404 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_time_get.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_time_get.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_unprotect.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_unprotect.s index c23eb6c9..10415473 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_unprotect.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_smp_unprotect.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_stack_build.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_stack_build.s index 0c878ab5..b73949d8 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_stack_build.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_stack_build.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_system_return.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_system_return.s index 2dea2a0c..526c9deb 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_system_return.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_system_return.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_vectored_context_save.s b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_vectored_context_save.s index abeba5e9..986828a4 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_thread_vectored_context_save.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_thread_vectored_context_save.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/ac5/src/tx_timer_interrupt.s b/ports_smp/cortex_a9_smp/ac5/src/tx_timer_interrupt.s index 909c546f..8be10421 100644 --- a/ports_smp/cortex_a9_smp/ac5/src/tx_timer_interrupt.s +++ b/ports_smp/cortex_a9_smp/ac5/src/tx_timer_interrupt.s @@ -1,13 +1,12 @@ -;/**************************************************************************/ -;/* */ -;/* Copyright (c) 2024 Microsoft Corporation. */ -;/* */ -;/* This software is licensed under the Microsoft Software License */ -;/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -;/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -;/* and in the root directory of this software. */ -;/* */ -;/**************************************************************************/ +;/*************************************************************************** +; * Copyright (c) 2024 Microsoft Corporation +; * +; * This program and the accompanying materials are made available under the +; * terms of the MIT License which is available at +; * https://opensource.org/licenses/MIT. +; * +; * SPDX-License-Identifier: MIT +; **************************************************************************/ ; ; ;/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/example_build/tx_initialize_low_level.S b/ports_smp/cortex_a9_smp/gnu/example_build/tx_initialize_low_level.S index c42c9881..44bb0bc9 100644 --- a/ports_smp/cortex_a9_smp/gnu/example_build/tx_initialize_low_level.S +++ b/ports_smp/cortex_a9_smp/gnu/example_build/tx_initialize_low_level.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/inc/tx_port.h b/ports_smp/cortex_a9_smp/gnu/inc/tx_port.h index c91e08f2..2a021b7e 100644 --- a/ports_smp/cortex_a9_smp/gnu/inc/tx_port.h +++ b/ports_smp/cortex_a9_smp/gnu/inc/tx_port.h @@ -394,7 +394,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A9/GNU Version Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Cortex-A9/GNU Version Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_context_restore.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_context_restore.S index 45373175..31ad1ed4 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_context_restore.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_context_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_context_save.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_context_save.S index 25ba750e..a07a3ca1 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_context_save.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_control.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_control.S index 0b94437f..7df1ac50 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_control.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_control.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_disable.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_disable.S index a1175d25..f9356ffe 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_disable.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_disable.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_restore.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_restore.S index f7ab044a..9ab32d22 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_restore.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_interrupt_restore.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_irq_nesting_end.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_irq_nesting_end.S index 711d8d3e..41b6197b 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_irq_nesting_end.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_irq_nesting_end.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_irq_nesting_start.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_irq_nesting_start.S index 1f146b5f..040ec492 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_irq_nesting_start.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_irq_nesting_start.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_schedule.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_schedule.S index a93aad13..a41df149 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_schedule.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_schedule.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_core_get.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_core_get.S index 24122638..92e158e5 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_core_get.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_core_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_core_preempt.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_core_preempt.S index ba7e8aa1..427eb89f 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_core_preempt.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_core_preempt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_current_state_get.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_current_state_get.S index 0ee7b45f..4d4d2362 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_current_state_get.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_current_state_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_current_thread_get.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_current_thread_get.S index 4820b626..c1cb8230 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_current_thread_get.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_current_thread_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_initialize_wait.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_initialize_wait.S index 4c6fd407..2bf7e824 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_initialize_wait.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_initialize_wait.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_low_level_initialize.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_low_level_initialize.S index 00ae9b79..2131b648 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_low_level_initialize.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_low_level_initialize.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_protect.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_protect.S index 80561347..f7e7b9d9 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_protect.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_protect.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h index e5170ad4..7ac4ad4e 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_protection_wait_list_macros.h @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_time_get.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_time_get.S index 0723c812..9621bebd 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_time_get.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_time_get.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_unprotect.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_unprotect.S index ff7c97d8..890d34ff 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_unprotect.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_smp_unprotect.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_stack_build.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_stack_build.S index e93d39d3..d7daacb3 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_stack_build.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_stack_build.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_system_return.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_system_return.S index 3daa4d12..cfba6eb1 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_system_return.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_system_return.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_vectored_context_save.S b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_vectored_context_save.S index 9f7651f9..3683c560 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_thread_vectored_context_save.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_thread_vectored_context_save.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_a9_smp/gnu/src/tx_timer_interrupt.S b/ports_smp/cortex_a9_smp/gnu/src/tx_timer_interrupt.S index 964c7b36..291147b7 100644 --- a/ports_smp/cortex_a9_smp/gnu/src/tx_timer_interrupt.S +++ b/ports_smp/cortex_a9_smp/gnu/src/tx_timer_interrupt.S @@ -1,13 +1,12 @@ -@/**************************************************************************/ -@/* */ -@/* Copyright (c) 2024 Microsoft Corporation. */ -@/* */ -@/* This software is licensed under the Microsoft Software License */ -@/* Terms for Microsoft Azure RTOS. Full text of the license can be */ -@/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ -@/* and in the root directory of this software. */ -@/* */ -@/**************************************************************************/ +@/*************************************************************************** +@ * Copyright (c) 2024 Microsoft Corporation +@ * +@ * This program and the accompanying materials are made available under the +@ * terms of the MIT License which is available at +@ * https://opensource.org/licenses/MIT. +@ * +@ * SPDX-License-Identifier: MIT +@ **************************************************************************/ @ @ @/**************************************************************************/ diff --git a/ports_smp/cortex_r8_smp/ac5/inc/tx_port.h b/ports_smp/cortex_r8_smp/ac5/inc/tx_port.h index 9fbbbddb..f393de74 100644 --- a/ports_smp/cortex_r8_smp/ac5/inc/tx_port.h +++ b/ports_smp/cortex_r8_smp/ac5/inc/tx_port.h @@ -398,7 +398,7 @@ void tx_thread_vfp_disable(void); #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-R SMP Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-R SMP Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/linux/gnu/inc/tx_port.h b/ports_smp/linux/gnu/inc/tx_port.h index c577d73b..c8a02235 100644 --- a/ports_smp/linux/gnu/inc/tx_port.h +++ b/ports_smp/linux/gnu/inc/tx_port.h @@ -633,7 +633,7 @@ void _tx_thread_smp_debug_entry_insert(ULONG id, ULONG su #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Linux/gcc Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP/Linux/gcc Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/mips32_interaptiv_smp/gnu/inc/tx_port.h b/ports_smp/mips32_interaptiv_smp/gnu/inc/tx_port.h index 60659062..86fde6c6 100644 --- a/ports_smp/mips32_interaptiv_smp/gnu/inc/tx_port.h +++ b/ports_smp/mips32_interaptiv_smp/gnu/inc/tx_port.h @@ -424,7 +424,7 @@ THREAD_SMP_DECLARE ULONG _tx_thread_smp_initial_fpu_control_register; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP MIPS32_interAptiv/GNU Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP MIPS32_interAptiv/GNU Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/ports_smp/mips32_interaptiv_smp/green/inc/tx_port.h b/ports_smp/mips32_interaptiv_smp/green/inc/tx_port.h index 085c9a5c..02b95a11 100644 --- a/ports_smp/mips32_interaptiv_smp/green/inc/tx_port.h +++ b/ports_smp/mips32_interaptiv_smp/green/inc/tx_port.h @@ -514,7 +514,7 @@ THREAD_SMP_DECLARE ULONG _tx_thread_smp_initial_fpu_control_register; #ifdef TX_THREAD_INIT CHAR _tx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP MIPS32_interAptiv/Green Hills Version 6.4.0 *"; + "Copyright (c) 2024 Microsoft Corporation. * ThreadX SMP MIPS32_interAptiv/Green Hills Version 6.4.1 *"; #else extern CHAR _tx_version_id[]; #endif diff --git a/utility/rtos_compatibility_layers/FreeRTOS/revision_history.txt b/utility/rtos_compatibility_layers/FreeRTOS/revision_history.txt index 30e1120f..1cbc90b6 100644 --- a/utility/rtos_compatibility_layers/FreeRTOS/revision_history.txt +++ b/utility/rtos_compatibility_layers/FreeRTOS/revision_history.txt @@ -1,7 +1,11 @@ -Copyright (c) 2024 Microsoft Corporation. - -This software is licensed under the Microsoft Software License Terms for Microsoft Azure RTOS. Full text of the license can be found in the LICENSE file at https://aka.ms/AzureRTOS_EULA and in the root directory of this software. +Copyright (c) 2024 Microsoft Corporation + +This program and the accompanying materials are made available under the +terms of the MIT License which is available at +https://opensource.org/licenses/MIT. + +SPDX-License-Identifier: MIT FreeRTOS Adaptation Layer for ThreadX Revision History