diff --git a/common/inc/tx_api.h b/common/inc/tx_api.h index 99c33a0fb..dbf0d3460 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 c1e73bf26..f18a3f201 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 000000000..4b428a23d --- /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 98f127a7e..cf55e8dbd 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 7531b285f..69be9c313 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 9e5096214..7e1bb8bbe 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 155ffedd0..57013da21 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 1c9a5f16d..6cca4ec72 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 47c6a3a4a..583adae1e 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 6bbef133e..9eaf86b59 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 be9d46545..b08e87da7 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 bc24a361c..003260a84 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 2e2f814ef..56ef58401 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 e718c86dd..19950c03b 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 9fa7d0a01..c4aa71147 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 33d8f9b61..089f13de5 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 593559ac1..d9a80463e 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 2ac683473..79a786c57 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 bbe0285cf..9fcc82e65 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 854eca746..9d3dacae6 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 d8c29900a..7b9d11144 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 808ef3694..954ec3717 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 cdcdbcdca..8ef5dc98f 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 3f0047b75..aec09bb45 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 a16382434..59410fdc0 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 0a5fa748d..541ddb1e7 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 85b3f7c5a..9b36bf613 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 d0fad3efe..e9dbf9e0b 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 3e29f5343..8c92eeb1b 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 a1b9131ef..af5169753 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 1c5501920..72bebd9db 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 a83b23e31..66b824227 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 805c4707d..fd36e17fb 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 e4250463a..7d3bddaef 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 161ae2120..e2c50cfd2 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 d181f439a..ad7fb5d26 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 a538dca32..a8ee12ad9 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 52693201e..aea8bbf4b 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 fe2d12574..176464820 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 0fb9f719c..838213359 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 6250c817e..82a1e0c40 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 71283a336..e9ae138a0 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 1a2e03006..9d745e0a7 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 fb0694e5d..a11c826a3 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 4cc6704c9..f7c4617a8 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 c9149ba42..23c3e66c6 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 dfb136d3e..6a270b666 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 fc066cd94..3fe539d2b 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 f6afb7a21..3d3dd37ac 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 acf311463..8dc69191e 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 ede635f16..82362bbc1 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 f6bdd3a25..5a6b6e1b2 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 6f3dc61fd..ecc9326d2 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 e16539026..f51c22382 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 afb3e1c29..8506be1b3 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 46d417a77..649bbbb0e 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 002a67e19..ee9498452 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 8f41ab3d6..9350540c2 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 344728373..7f156ee0e 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 735d2c379..1c26a7a06 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 c7920248d..23f82007c 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 e8e1bb4a3..137c5883a 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 c5f5e9fa9..7242cfe4c 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 c02bf476e..8bcdaa980 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 2e2ef09ae..211b81dd4 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 67209da91..c4d5b1b42 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 6691b8161..318245894 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 1e81a99cd..170625814 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 81acec953..0d71933a2 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 0e4e7f814..7b2b36cbe 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 3c663372d..4cf6b9178 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 61b860280..e1a618600 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 090ae19e2..28856151f 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 c6dd42533..7a7a35855 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 7f014bfeb..b76d1ff60 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 d7f50ec6a..761ec21c3 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 61fbb2d30..4e32e1fa2 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 1f71e1510..c7042dfbe 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 e2409000a..e287b8a50 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 4d48d0369..550bc0072 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 14a767554..f2420967d 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 79df76ea3..02324827e 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 843fea3b8..ff4f33242 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 e491057a0..6e7963bf1 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 2217bedbe..906b9bd19 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 cc837c0c7..93be71d74 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 2d2795f47..ee8484ce6 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 28fe5c89f..e2e9435b7 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 93a22c9b2..b9a99e0c4 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 a53b4288c..01e85f7f2 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 c33617ea4..638d1d0d4 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 c669807a3..032d4dcc4 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 0aff97992..3da96c713 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 ec38ea2f6..23b678e28 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 af4a583ef..2ca47eb66 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 f41a62d55..bf9f17351 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 428a8de2f..ede3ec497 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 91bcd6292..061c5806e 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 fb0694e5d..a11c826a3 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 dcf90a737..1f2207ecd 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 5c0a59408..bc52ebe73 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 fde80688b..61087c84d 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 5e7176578..f2ef9712b 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 522d6f307..5ac525432 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 bc860a4fe..121dee2ae 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 047326e33..ded353be4 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 509c40116..be12db772 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 bded00b9b..2c72a853e 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 b405a9e56..dbd7a6db6 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 76ff4e3f1..e30d35776 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 5dfe9e437..afbca2cff 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 11af6328d..060a471c4 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 a57052fbc..50affb8c8 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 5cfcd67fc..675c1f4f8 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 8d364e032..ba0ed9bb2 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 e54984265..d123e0547 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 3dc2f5194..48bee7f7f 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 bef3c55ff..89024b8e2 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 15f093eb7..33c508356 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 7647a3673..ac57cd961 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 006125b0d..db77a17bb 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 4cd8a930b..137714b6f 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 6acf2e032..562d51328 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 e80da5028..e3897977b 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 0a1c5ae2b..41867e494 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 0146e604a..a6d540a7d 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 daa4cee70..64c7508aa 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 570ec9ecc..deace5085 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 9718fb975..ff38c1ca3 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 0dab95cfa..5e08187c0 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 dcef554ac..86a70a4fc 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 94f252f05..c59c61f41 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 8281dc64b..e8660d9bf 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 9eccd2acc..1aa26ae1f 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 cdd32c06c..28bac1450 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 0cef8062e..686220c59 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 780ba3528..14591f593 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 fc55439ce..55fa6dfd9 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 903f53923..593881ba9 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 0268a5ce3..795f720e3 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 75192bb56..ff39fe91a 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 13f2c0e36..2b40fec18 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 d068d4a35..dabfea417 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 45d91121d..bf4c5caf8 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 d6777830b..60dd91b60 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 d61f74c90..d80ddec15 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 d61f74c90..d80ddec15 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 d61f74c90..d80ddec15 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 d61f74c90..d80ddec15 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 8e3096019..6b32af58d 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 e3a5f2b26..a492d81e9 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 a119bd7d1..64584101a 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 9027151f3..09d941758 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 828f78233..bbbf8cf1d 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 e4666b3f5..b8828834c 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 a15bd107a..f8a73cbc7 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 87b7356b1..497d7421c 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 f9145fee0..ce9d08a79 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 4f3acf28a..19c70c894 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 0f3a5bbca..70c949b3d 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 72eb215d3..f1662abaa 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 b6d65e501..21151129b 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 8fb826f87..c98087aab 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 1ba0904ac..141a49bd9 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 e32e14bcb..3a1d2ba61 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 62ba32396..8d05bd80d 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 adfd0123c..9a37d02a1 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 d61f74c90..d80ddec15 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 d61f74c90..d80ddec15 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 68ccca3a3..af7e965c0 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 6ec3acb72..9ccd1480d 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 8191ef183..35652d4fe 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 955a8dee6..20630974c 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 2543d539e..fd513c2cc 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 6f36ca602..e45574f38 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 412b4e885..d5d9f51ad 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 4fbc5eb21..b12d14da4 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 16f7d7a45..c8056c390 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 686445bc0..8a59297cf 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 70f1d7ae9..aa83ad278 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 4d3febb5b..ae508e4af 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 c0e22c3e1..c326590be 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 1393e7114..4ff4083c4 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 967a8ce7c..b006a9436 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 e56f898ae..26925f8a9 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 f77f2f490..53b988a03 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 5516ee999..052b590d3 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 d61f74c90..d80ddec15 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 e591cef74..0ea0eaafa 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 d61f74c90..d80ddec15 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 e46e9fb11..ca458fd30 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 bb3b0f2bd..a239d50b5 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 8a40434e8..c54bd762a 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 6812175c9..493a09657 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 330fe7aed..e040244cd 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 915e63362..f1510e0d2 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 5e9aa8c11..3b83f0e3e 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 5d7872904..68f9eba6f 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 fcb20db15..d1d8437ed 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 e85f4c562..b9a39960d 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 0c7ec4b9f..4b97a6c4b 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 461d8b1d0..a5a6f15f4 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 71589b71b..8c4249742 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 a48b53370..7565b57ad 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 092b036d1..98039b47c 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 6b862ff53..32af6cec1 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 7e25f0a9c..f928253d9 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 6d4eb857b..ddbfda9e9 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 f52e39126..becdc1ffa 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 fa60da80d..22770ae17 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 1e1d77568..a68dd9d71 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 e08b300f9..6020c253e 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 be446f3db..3993d9f07 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 a4df5c30d..44233091f 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 74a2d89e7..eb969c1d7 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 e443ef08f..9062160c0 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 4cc5e0709..a1456bd16 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 755e0c3b2..0d422e490 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 c617626a4..5653faf4b 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 8953d67e2..e9f15cc6a 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 0315cfe7a..f458cb211 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 33c6abedf..2f1814f8b 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 b713b482e..0f10a5375 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 56e2d66be..a868d826a 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 3af996827..01e934359 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 a4937e337..1e9a2f82e 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 f1007c37c..ce94e6e0f 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 d61f74c90..d80ddec15 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 46642fb89..ee13c9970 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 d61f74c90..d80ddec15 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 e1f286eec..c30a14aaf 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 6507a84b3..3f1e8f9e6 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 f27d06072..0b3814a8a 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 7bf78318f..dfbe7b7b2 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 b1de906e0..af8f462b4 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 a65857054..e43fdf76b 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 884654c07..155a79b6f 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 035622117..8b82e8eb7 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 7220eddc8..e4618a599 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 2a920f9d7..43c7952d0 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 ab2d77cb3..1893ce179 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 96f778679..5de63f0d2 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 dc6100d36..bf465f81e 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 87d204958..985da38e2 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 4c02c3568..fc4e58705 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 7c127ed3b..c35bc5f61 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 bbf6d6861..da8794f77 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 546b5fcf6..da4b2f3f2 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 06e78c0bf..f6d81355c 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 4eda9014c..ddf3e8bb6 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 29f2fbe5b..24c52a6c6 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 884457af2..d2cbdc19d 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 21ecf6163..6c1d90c88 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 15c640a09..9fb183398 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 dc72007fc..7ba4eee39 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 b6a7965a1..0089d6bdc 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 43d2612c3..34b3d0a92 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 50e530981..8339da103 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 974260096..72586e253 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 7414975af..630a5dc97 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 ccb045fed..c3ff143ff 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 e5d175a18..67f483782 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 77c6ce2b3..f59821925 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 76b4f9f51..18f160956 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 5dada602c..621559449 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 db3582234..e7d10bfbd 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 abed4903d..41b21a339 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 d61f74c90..d80ddec15 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 5ed96ac0f..c80497a8a 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 d61f74c90..d80ddec15 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 272dba6b7..f6ed88d74 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 d01ab7f4e..827c0cdfd 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 50c40de98..b189af01c 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 78434283b..cf9c22eb0 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 c5595353b..723d0ba57 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 0ba193d01..a9fa3890d 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 1ac7fa81d..ea0855c5e 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 f91c4ba9a..76fe6bb54 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 02501d903..c1a42e430 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 3aa063393..15f9c4253 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 7fcb3f2e9..90fc68e95 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 e01f20b9a..b0c927b29 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 d6bf39ad6..0b9e4a773 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 767a4f01d..0688152e2 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 4931a209a..962f78131 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 f2d3bdabc..13e04f6ca 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 ab412993d..2e1ac10cc 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 ccd000f02..49d4219bb 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 9931e66f0..a15994e1e 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 b20ebb476..d6980a5c2 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 c25c281a3..49add8f8c 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 c77b89e73..2ccb6ba90 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 d25377771..3069b0de3 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 4b1021789..7faeb3c87 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 bf2b52c07..43ae1483d 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 27a06a249..876f19a5d 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 63d8c2380..eb141f70f 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 92f67f5ad..f3014acef 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 d3bbd17da..b00872b38 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 dd41ea406..4ef900fa6 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 6f58dc7d9..1f9dfc8dc 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 dde0517ac..664bc10e2 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 21c7b7f4a..f10d9769d 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 80ded617f..bc6f3087a 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 0c890b5d8..e2a5a8c4e 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 0201c0c85..05e9fddad 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 d61f74c90..d80ddec15 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 565dab629..ece524960 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 d61f74c90..d80ddec15 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 2c41ad6db..5820192d2 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 acf8ebf45..5cc6cb5b5 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 24baa2a4b..e063a2b10 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 d3dd786ca..75045787e 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 b3c05c84e..999febaed 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 07a59c286..7f974a726 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 24d71e7ae..27221a2b8 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 1d2455851..af3d7786e 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 a8ed33d1d..75d7279be 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 ad7d4e649..ce8e51cf2 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 0990dd01e..bad3cf79b 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 b5b45be56..a3e6d8195 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 141bdd36d..ed787d248 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 6b3fce373..8f221f165 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 07a396c57..8b153c140 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 f3c7d3b38..d8d1b096d 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 6b7904670..76d9b155e 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 a90138aaf..86c6960e3 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 834d5ac59..f1a83341a 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 cb9c1080f..4b0c16eb7 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 fefc2e4b5..673ba8c68 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 39f494c66..df7d1721d 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 e605de0c6..a8504791c 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 aca71d4cc..aac316ea8 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 3cc233bbd..b94b9e7bd 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 dddac18a7..06f03ccaa 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 add152322..8324238ab 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 2ee69351b..d37623fce 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 d5989ec4c..e6ebbc76c 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 cf8aa1657..5786976df 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 8ec63d348..6eedfd3ed 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 e4bce3328..a2aedaf06 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 65242599b..0a00a628b 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 7eca1a3d5..766b740e2 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 f98058251..7aa32ba83 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 5b316308e..5e61de270 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 5cd94fe8b..0bb819045 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 0f986d1c3..6a7575300 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 d8400272a..009b72107 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 49269a1d3..f45ebfde6 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 dcdce89ab..fe7600773 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 080426f22..fff58dc2e 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 de6b567eb..8222f9dea 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 3f6d6d7d0..c7c6a1423 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 aef65a7b5..3fc8cc231 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 0fa8f3e3b..fd3a0ae85 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 52d1aec86..41c5dd210 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 0761f2324..46d9f8ba4 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 817018354..fee960e37 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 a81a95e85..cef9159fe 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 3bb3c84e4..3b64e055b 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 d98aa2db1..19469eae1 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 925677e69..43896ee84 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 e1725ae60..b2fb81627 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 394a507ce..9463b229c 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 e00134e52..01fbb1948 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 03233cde6..f64aff1fb 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 3c495b407..b08efc47a 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 1f93ce069..b5f05400f 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 050e46df9..508ccc6dd 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 244e14f3f..8a8787834 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 3913ef3ab..8e163a891 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 834d5ac59..f1a83341a 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 8621fefd8..1be205e8b 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 545bdd365..15e742698 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 6b989f4e2..3245b5126 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 e605de0c6..a8504791c 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 aca71d4cc..aac316ea8 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 3cc233bbd..b94b9e7bd 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 6607a514b..f9fa81847 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 add152322..8324238ab 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 2ee69351b..d37623fce 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 d5989ec4c..e6ebbc76c 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 4db1f18b7..d157087eb 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 ad6fd037b..fdc098179 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 6c8015df6..5fb1e96b3 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 b932579f3..696ea4ef0 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 3e7c5e1f8..bf8459e75 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 21da05277..bd52395a9 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 39a3c0b4f..f984b3e9f 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 7a4de34ba..346a8475e 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 042deefbf..d89fcfd60 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 f24f538a4..13cd6d9ec 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 93a7ec9e0..fa8e83a68 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 4ab003a9b..26dcfec29 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 8ab44f90a..b850d47b7 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 41e4e7350..86ef0b206 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 f484867c3..30a47d88c 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 99bae5d3d..a1cfe3377 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 f05af7d53..16d0c0319 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 f1b84bf92..c3295d969 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 97c1c065c..4a62fd946 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 22439b8c3..f9aee569a 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 196816387..4ecf4ab23 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 581e33a72..dcf480e23 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 09d05378f..c7cd720df 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 2ebd38387..e6fe47cbb 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 543633dfd..2d7fa49c6 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 cd9afd1f5..a63737abf 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 1d57b7cf7..29ff36ec7 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 0b2120911..afaa3082b 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 56d926261..cf5cf6a32 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 38ffcfb0b..80bb5259f 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 d8e340ed3..2ad0ac89c 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 d2123fe5c..cd9a58773 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 2f3adea38..5ce23eeb4 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 9c7f175d9..451c6ae48 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 70e2a5dcc..cd5c9a5fa 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 be4c3b6c2..c60db6003 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 cfeb1d349..5f65a194a 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 2f206f847..88cb48535 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 154b99120..4a15e661e 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 cf7d3cec7..4ee07714b 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 2616fbd4c..62d2391fb 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 49058de3a..57292d507 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 7fc4a2360..8b38ea80c 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 2f94f12b9..efc8f6677 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 425bae023..39bdec1fa 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 4b62762a2..e579fb4dc 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 86dcbe2f3..8b67b4d77 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 24cc903dd..d7e11c06b 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 1f933c103..ac2af455f 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 1705e068e..d3e6d9af5 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 de2d62a72..f836d5af3 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 16bcaa9c6..e2aec8013 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 53f714205..b8c03fa32 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 d7837b037..dddaca7b6 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 55dcf08d8..207ab4b17 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 e1cf3ff8d..35367af77 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 6801014a7..825eaf124 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 fd0d6196e..4cc243699 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 b0a58d8b7..d97cf1365 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 aa04b898e..f73651ce3 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 43d0bd080..5ee774d9d 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 fd8fd9b52..240db972f 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 724e26e11..99453a827 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 272b00bbc..721b538d3 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 1bde5990c..8d1086b95 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 b3bcc62af..bd6aa1507 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 4475bf17b..2f78faeeb 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 a82bbf445..ae298a342 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 7a88857f1..0963380f2 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 d1e8da372..c1a8d1f7e 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 f4a31acb5..556e49409 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 33d024a97..edf1ab034 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 b5eed1e9e..3d514ab46 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 ad34dcc53..1d014f8a9 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 b23c3a1aa..55a5289a5 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 bbe68efad..3b8aa4054 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 bce401bbd..e2f0182e3 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 c7cc19754..da4ae3cb1 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 619655516..6a9531fdd 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 9b098cc82..dbdbbcd07 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 896f7c508..b725ef997 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 e4cf0518d..04126681b 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 83d37d4db..bedb8e929 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 b4b75ebec..a852adaee 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 c8bdf2997..6de8ea774 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 594b37745..c36819eb6 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 8b3052412..81b50433e 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 d5019869b..3a4eef8c2 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 ed8c9a71d..c03187e48 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 2d68ea902..e2a712a75 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 94a39a7d8..9026e56d4 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 330f6b02c..a26bab460 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 d2f280539..d714b4b3a 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 4ab29f55b..e69cb941e 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 b73db8ea8..239cb49e1 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 730bcc54d..bbf8ccd76 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 542257713..2c718a747 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 969d17543..2bd74a99e 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 29e322482..64af5589f 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 0038aa8ad..2f21d30cc 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 f006db859..f6128d56a 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 89fb4fed3..aec5717d7 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 c57649cb2..a5d96fda6 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 acf7cc154..0e4b3f1e5 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 4b4a58ead..ca07eaec0 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 fb0694e5d..a11c826a3 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 f2b0ec85d..82304d36a 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 df9740076..c304cb994 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 c750ac78d..b56b9d83f 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 85f5b30ba..1dfb9ecd7 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 5f0eb3304..6e0212c93 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 ac85b69ee..330bb9d55 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 91212ca97..245752a57 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 1ffd08adb..636007cbe 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 807182c6f..b78773a03 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 a62da37a5..7e376a51b 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 7d28615c3..209cb6581 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 7dc448c95..84caee5b2 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 c2511eb0f..9a2b1cc3c 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 54bfa3f80..36a3ed61f 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 8c9470524..678e7a9bb 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 7e80c67b2..eee00ce6f 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 a16c0234e..a303ef544 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 ad93c0021..0b6c83817 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 4a5e69a32..1b743b096 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 638ff84e2..f4048621d 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 c9534ed38..1b51ccdc2 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 632e844d8..9c01112d7 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 b29355bdd..44561789b 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 4fee0d39c..cc071a5b4 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 cddce991d..a2bc55067 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 b6cee4535..42b1deae7 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 2e4c21587..83fbbd17e 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 77c8e5fe4..42be14905 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 9559bd3e7..bbb868488 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 78ad12b86..a8c755fab 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 47a39a179..aa24d6c35 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 f186a123d..896c5525f 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 99e607b51..0ae740094 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 667bea334..678700dc9 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 805a40138..15fbb1e92 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 6e000500c..9d1b2d147 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 c395968a7..65a4be5ab 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 fbfbef20f..bc99650a9 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 3edb566c4..89e58b508 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 4bc440d50..224966a70 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 35e543483..2a3698d7b 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 9611259c9..7af79f591 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 062d1fff6..61ebae01e 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 8adf6b36c..5b85a17fd 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 324c32a8b..f46318ae7 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 968faccdb..0144fb47a 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 b8d2331c9..af6a36575 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 a84f926f3..69ed81f1d 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 8cf88e991..c1dad6a9e 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 9f2f21b6f..f2408e306 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 3ba6a8bb5..1f80ff968 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 a4b40db74..6ac1ade73 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 5178a6bb8..198d4ad1d 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 3ff69fc2e..26440a927 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 809963ab5..8a46e22c3 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 5f926ef64..a898aa078 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 99486aa0c..d9d3d30ba 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 8ce3ea776..c3045e8ce 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 3cad72d08..e73e4d7cc 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 64f93b80f..688d243d9 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 1042b50dd..7872802bd 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 14fc48282..5d58b2a58 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 33e898946..33aa6f37c 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 9e1f38199..b895b1438 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 c947dfad4..2b2de3dd0 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 93b3f3d37..3ca9650e3 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 66871c436..aa5bc2f34 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 d1527375a..0261bddcf 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 51e753a87..596a8e070 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 fb0694e5d..a11c826a3 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 ccbedb034..a34712777 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 82708effa..4d11417e4 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 ee37e31d1..4f3721cba 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 9c3156e43..8806203d4 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 717b69486..5d1c2cc89 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 4370350b6..6c94dc91c 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 bdf30e04c..752d6e63a 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 c22d915e7..f013cc3a8 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 bf7b588a0..7ef4c98df 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 88b9432dd..00b10b7d8 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 2fb25df43..8e510f15a 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 036e36d1b..61edbd158 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 c176fbaee..b547290cf 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 11cf89557..011af4804 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 999365e0b..0bcc63ed9 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 a76db6513..77cf89d55 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 9e6246adc..96e58d4fe 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 7e95c1dfd..b5d2553af 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 d181b9115..745a9d19c 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 8e5b68418..77aa6468c 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 5b7e13a33..62f098ebc 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 bf8b76a53..ce3a27d7a 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 b034ac7ce..6a7768c91 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 55e5953ed..687a56e6f 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 0b9729ecc..3a60ca6da 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 5f0cafea6..f2153ae6f 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 945412b7b..e81f900ab 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 1c0468f1e..fc88ce8fe 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 61fe002be..3b9dbc49b 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 a7d0059ab..58e5d0728 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 962a03990..4029bbb41 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 3111b3e87..85274fa21 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 a700be622..30f86c92e 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 3429ad17c..76bec2a6b 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 455293336..466e0eee9 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 822e398bc..b3faade0f 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 7a6d3e954..5da2eda2c 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 d4697a0a6..a460a4f03 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 799171e4e..eaf1eed1c 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 1272dbb30..c4f78b3cb 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 aad5823e9..9724dad34 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 ec173ce1a..1d19b5fa2 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 50bdcb7a7..79df118bd 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 6307413af..c13636399 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 421e116b5..a386e50a5 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 a8c8862ae..9dc89d9be 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 4f9ae837d..7fda9938a 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 df5cbce1a..f4f54afc9 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 0f0e49067..6d74b81a6 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 5fff1894f..73cd1f272 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 0a0706aa3..b3f168091 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 a65e744c6..278d58145 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 4436cefea..a9e3df99d 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 72069ff99..29ed1a7a0 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 2bc16d72c..fff080920 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 6e35af6aa..081f529c6 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 184a04085..4abefcc9d 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 503e9cb65..b79ba6f40 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 f582b0f33..3c510df7a 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 3de330348..2602d46b4 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 c0877659e..30809756f 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 1b0ed54c2..b524fb7bb 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 0daf2be58..ea330250d 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 0dd47a0a6..93872e305 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 bfe253430..84e9eacfb 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 6af992772..641f5ab3c 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 05481662d..4f0fbeafa 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 6e1ce1c4e..a8688a526 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 1ff7ba408..e148a51b4 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 44100be60..7e309c3d8 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 c32858bac..9e83585ca 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 5491018b6..a1806c4af 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 511ffb8c5..a9d502714 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 5bd0ba656..23454a757 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 54a6683ed..a34f9ccde 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 d08e3abcc..9740b6afc 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 ac3a91182..69859e11b 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 3720e3043..c8a9abab4 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 94619bc9e..57ddac62d 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 1bc034e7a..fc981a498 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 e0cd1b2d8..0af2e2caf 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 665721b26..36c5c2e47 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 a47c58767..eafcd6c07 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 9977585d4..c8a452ed7 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 67305450d..28c0ea5f6 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 79178d0df..d4656214e 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 bce339341..5cf106c72 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 d477debc5..1d6be57f0 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 5e787223e..0e312291e 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 759d5b26d..9bc43b248 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 bc5a2ddb9..6d3e38ba3 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 a186bef24..bec6521c2 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 10e55642f..d64f15e1e 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 04177aa3d..0e4dce940 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 9541e96dd..e3d1d6408 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 c191eef81..abbd6cbff 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 7aa3aab68..6738fef3a 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 f9cf83174..a3e41c9ad 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 6148087d6..3d5d1a361 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 a8af59a34..08eba2f17 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 b09361572..e0f89d99d 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 cae8cb697..2090fc48f 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 6c73b4bcb..eb4caee06 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 5a0d2b880..1111dc97a 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 29d9a0744..f01b22bfe 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 e88dbfa17..a1398c517 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 935ca3930..ecd7b2050 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 9f2e76bb4..5fd09f8f9 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 bb94b01e4..60279416d 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 dc44fa25c..5b0c04e57 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 0fc7da2d8..9306d159a 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 1cca54543..f61283471 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 fb6dcea55..9db56216d 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 9809142f6..37f82438a 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 5a6082e40..a5872e637 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 6407b80ea..160d90c36 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 39013623c..78f0cf98a 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 f4aa4d8c7..e994dc20f 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 bfc52d5f8..cdfe8be70 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 d61f74c90..d80ddec15 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 b0576d6fb..8420990c1 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 994984d50..256fb2659 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 662fe08c1..d207e1e76 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 249a2afac..95ca5231b 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 06e78c0bf..f6d81355c 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 d07413a3d..4eb913f4e 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 fcfd76afc..37751bc44 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 b9455c34b..e7544e446 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 b03fcc36e..a5d6bfbca 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 6412e4922..979a2e62d 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 75997051d..37d605acc 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 b9afa89a8..05bc49fbd 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 950260b2e..7e79d924c 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 196b6a2f1..5c1afcd23 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 90ea079ae..e735cbfac 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 e61c6a661..d9150dffd 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 cf4ec1b5c..a7bab5f75 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 ef8171d20..3ca03a08c 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 6b527db33..cb838377f 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 72d811f1c..92a2311ab 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 be446f3db..3993d9f07 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 a4df5c30d..44233091f 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 74a2d89e7..eb969c1d7 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 e443ef08f..9062160c0 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 4cc5e0709..a1456bd16 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 755e0c3b2..0d422e490 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 c617626a4..5653faf4b 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 8953d67e2..e9f15cc6a 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 0315cfe7a..f458cb211 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 33c6abedf..2f1814f8b 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 f1a3b466e..be7a2ca74 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 11000daeb..03e24ca76 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 3af996827..01e934359 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 a4937e337..1e9a2f82e 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 f1007c37c..ce94e6e0f 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 7b556409e..675b1db60 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 fa445ca16..58da85b9a 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 3bf1ce809..5f22a3545 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 abafb58f9..db5fd8623 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 f99b3896f..28ca30300 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 165cd2ce2..fe4d569db 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 973f81448..d66ea1ff2 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 5355571f9..2d4a14288 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 98c6c6e76..51d17e4d1 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 6e5ccb7d1..77425a1ee 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 485b9d285..36330436f 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 85a5ebf87..fe49fea39 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 beb6ee75d..75e6b0d79 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 edd916e96..94c42a693 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 8decf3ed4..1bbbe754f 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 671a433ca..65df8b7e5 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 223eb441e..cbee12f2a 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 eb9899e47..96a7fed4a 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 6294a1f3f..4b92a25be 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 1146f3f0f..fc692efc1 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 f573ed634..6307c6936 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 041be454a..a4c6b0414 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 dce042db3..fd2c46b9d 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 92132b191..f0018aa04 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 2ac17ff44..c3eb43da9 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 4ac1790c8..58ea21384 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 3f8e5732d..57fca0c46 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 de5cd708d..f037f5241 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 7deec6b50..b1b55db60 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 3530a97a1..e26ea7f03 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 85da73854..f09ad44a6 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 90f5f8a43..c06393e22 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 fbecf09c0..1827841c0 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 2d87149f2..d7d497c47 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 57f28168e..6fe9d273b 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 d6c2f1f6c..d638c825d 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 184144dac..e4b499aee 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 4b6ab4e9b..a15cd272b 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 8454a318c..951a71d8d 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 f58c17c23..c88c29779 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 69bf2db3d..83008f7d1 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 f58c17c23..c88c29779 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 69bf2db3d..83008f7d1 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 f58c17c23..c88c29779 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 69bf2db3d..83008f7d1 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 7c4cc508e..0491ca436 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 f58c17c23..c88c29779 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 69bf2db3d..83008f7d1 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 ba6b63869..4678c0877 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 0c24680ee..20be7d61b 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 ba6b63869..4678c0877 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 3801a6caa..0c87bb951 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 ba6b63869..4678c0877 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 d82b30a02..c64b98004 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 d0948469b..20c278aa3 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 eba3f1fe5..1ef19ea5e 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 d0948469b..20c278aa3 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 eba3f1fe5..1ef19ea5e 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 d0948469b..20c278aa3 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 eba3f1fe5..1ef19ea5e 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 d0948469b..20c278aa3 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 eba3f1fe5..1ef19ea5e 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 dc713c2a4..fa52e4890 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 4cc28d175..3f8f726f4 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 dc713c2a4..fa52e4890 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 4cc28d175..3f8f726f4 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 dc713c2a4..fa52e4890 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 4cc28d175..3f8f726f4 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 dc713c2a4..fa52e4890 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 4cc28d175..3f8f726f4 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 5072d847a..97da2970e 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 b75bc1632..b6e8c2bbf 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 a786ec18d..051f6f663 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 f011aefd0..b65b7a823 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 068ac0238..98003c3d6 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 3bca628a4..ae36cc13f 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 ed56874fa..5234d9482 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 9051722d0..d8aa33a14 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 960fc8a77..a6fbb0f8b 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 e07fce9f7..7f9a2b2cd 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 66fdf46c5..f862c87d8 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 a98175a41..85c03c5f7 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 ef07282f2..97bc7029c 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 d1992ec6d..722704754 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 3f021f4dd..502c35298 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 55b7942be..af808d42d 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 369683841..d5f077b21 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 85485c2e9..5d4efcd8e 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 01a5aad3e..a2aa765a7 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 e5ff6278d..263a13cbe 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 507cb5480..391e9c5ca 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 35008645a..2d6d3dedc 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 ccd9f67d5..a4b6a9aee 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 2795ea994..b9dc97da7 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 c154eb58c..0d461baa2 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 b7199a21d..558b91533 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 edd750a3a..be33d4078 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 666e458e6..714e1276f 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 d7a2ffc4f..1b7365197 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 d94115a16..60fa4f6fb 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 67d6c9d86..429e87b8b 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 fa40e6311..4b50af87d 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 353da0a46..a54c44358 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 a38a42f82..9fe6e34fb 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 b0a46171b..8575464ba 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 e61108d9c..748182272 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 fc62373e1..359685885 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 f4f0e4b59..0d26cb49e 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 d493e6f63..cb981dd0c 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 8aeb12042..5ec92e24c 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 d1c06269e..a6a0221cf 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 3559b7659..2d9c1034e 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 696cb8bad..0ff6f0c6a 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 ba03c61cf..7c5860d13 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 3b4656970..aca1d5c41 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 c9a81eb09..775c0db95 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 86bc0c966..bf0130036 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 ac48b4c49..1bf6a105c 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 12579abbe..51252277c 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 16d60b4a6..c36e57b5b 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 fcfe690ac..1f397a0cd 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 bb9880266..2f11cb0d0 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 b50f5c096..74113a373 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 ecf094ec2..feb33697b 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 755d3940d..3be434aa0 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 cfff450ac..0b7b20396 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 323b0693e..9ec7844ef 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 6eae5a0b2..fb833b885 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 38aad3e55..e0dde7745 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 caa3be817..34e33c1f4 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 0745c1465..7f7d3bfdf 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 87a362609..6077bc0b8 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 334ff03cc..c74dede11 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 516d47054..9743dc288 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 50b02ede2..192df07b3 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 e308131f6..4dec58896 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 c8794a7ab..96744bd3b 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 38924734f..826bdaddd 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 12b3c0b1a..253c7a150 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 29dc62935..ffc26813e 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 19b5b48c4..525d72578 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 770b96a13..1aa56daee 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 e85e183ea..262cc979b 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 be2f96546..c652d6321 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 f90077e36..df84cacfd 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 11a03802c..22a89af54 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 7d72402ae..166cb9edc 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 9968bc947..022a1c6b8 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 eb5a3ad67..5408f0485 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 8adae9c24..a8c386f9c 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 09b57e961..26ab7c03a 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 c903d325e..20569ffc8 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 ddc1adb3d..9e7094114 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 b16cf9cd1..193749c62 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 ccf0bc605..ddb466431 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 d09c43142..78ff9b9dc 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 db111f148..629fb07b3 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 050e74685..cb4f7837c 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 e5170ad4b..7ac4ad4e1 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 1e3fff9db..7daa29329 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 2994a729e..f10efb7e0 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 13cb6f56d..889788685 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 08e361672..f6dad9f42 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 9393d967b..06fb49c10 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 3d992db77..c72b96191 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 96d8aec4f..f102f5bc5 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 874f895cc..5afe5acc4 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 433ffd0f4..6fddf2460 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 a61d86db0..bec65636f 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 d07413a3d..4eb913f4e 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 bc958dcbd..21326e78b 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 64d22cf68..8781ae01b 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 f9a6fc533..1ba569eb8 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 c3a3fa620..7a36f4af0 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 66a11f330..2cfad3fe5 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 a21cef47c..3a22d6530 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 37e6b7c02..71ecfc9b0 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 935c157fd..2f0ff9aa0 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 0a83d9497..83b266931 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 1ce83fcf9..603ab13f2 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 dceee43f0..42f39e4ca 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 c080f5bdf..9a1f6e77b 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 b4bfbacbb..3883087aa 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 5e747df90..34e1e44ba 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 fe946aee6..973cb472c 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 c078e3a76..938301748 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 8f5a781aa..2ed8aa458 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 7f6d2ce19..e06d6e4c4 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 ddc5c2bf4..2b504ce2b 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 9073ff17d..ef5de38ba 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 705423520..b79f82c7e 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 d55814e3e..f869fcbe0 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 45660248b..f73ad98a3 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 d59a71e36..2192cb99b 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 823b8d26a..7612b876b 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 aec632866..0334636ee 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 21d61466f..a678d648b 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 cce4f3a71..c34d4a6de 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 77c80c93e..6823ead6a 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 8ab1ef841..46a3ac684 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 9aef13bd7..2c10b7773 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 7892c942c..b0fda3ffa 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 2fb4df7ab..c275b69ce 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 fcab89d78..3e9d8c8e3 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 49cbd7ac7..a66cefeca 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 4b6c4b4ff..c20c42011 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 f5bbf07c8..2dcae8d42 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 4c3a5f2e8..dc5ceb9e4 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 ee9bc1658..f15f16231 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 64fe15d4a..652056f7b 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 212f092e4..bf19e8125 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 0d34c345a..19f8a33a9 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 4206590a4..f936b93ed 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 888b9e235..d731b82f2 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 b0737a895..11e860fd7 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 cbfb429a0..a6f07a7b4 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 a0ef9910a..5e487f83d 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 5d79580c2..4b072ae48 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 6ec6ecb52..3d1ec8a15 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 83ab04776..cedbc1b37 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 56f4a5648..54d7df4b0 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 75e2649da..9d1d0e9b0 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 c5bc53aec..6b1c707ef 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 737679bf5..d6489ae94 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 a2ee241d6..0253399f3 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 5406f4e89..e42fc534f 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 61640d534..3eff0a0a0 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 099f5b0ee..94b69738b 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 c8406c7df..721d5ca3d 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 67b47cb78..a79a172bf 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 62199b113..64d27e5bd 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 63f3dcdc5..1af00b417 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 608e9b75b..f34858251 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 c6724ca70..111174445 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 987a37072..066d84b48 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 50b02ede2..192df07b3 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 9ae2f90d9..cb6154046 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 c23eb6c90..104154737 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 0c878ab50..b73949d8c 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 2dea2a0ce..526c9deb6 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 abeba5e9f..986828a4d 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 909c546fa..8be10421f 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 c42c9881f..44bb0bc9b 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 c91e08f26..2a021b7ee 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 453731751..31ad1ed44 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 25ba750e9..a07a3ca18 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 0b94437f2..7df1ac505 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 a1175d252..f9356ffe8 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 f7ab044a9..9ab32d22f 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 711d8d3e3..41b6197b9 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 1f146b5fd..040ec4927 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 a93aad13e..a41df1491 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 241226382..92e158e5b 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 ba7e8aa11..427eb89f7 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 0ee7b45f3..4d4d2362d 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 4820b6261..c1cb8230a 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 4c6fd407a..2bf7e8243 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 00ae9b792..2131b6482 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 80561347c..f7e7b9d91 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 e5170ad4b..7ac4ad4e1 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 0723c8121..9621bebd1 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 ff7c97d8a..890d34ffc 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 e93d39d34..d7daacb3c 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 3daa4d12b..cfba6eb11 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 9f7651f91..3683c560e 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 964c7b360..291147b71 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 9fbbbddb7..f393de74b 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 c577d73b4..c8a02235b 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 606590622..86fde6c64 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 085c9a5c6..02b95a119 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 30e1120f3..1cbc90b6e 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