Skip to content

Commit b91b03b

Browse files
authored
Merge pull request #548 from eclipse-threadx/dev
Merge changes for the v6.5.1.202602a release
2 parents 87ab09c + df30b8b commit b91b03b

243 files changed

Lines changed: 5551 additions & 228 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

common/inc/tx_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ extern "C" {
7979
#define THREADX_MINOR_VERSION 5
8080
#define THREADX_PATCH_VERSION 1
8181
#define THREADX_BUILD_VERSION 202602
82-
#define THREADX_HOTFIX_VERSION ' '
82+
#define THREADX_HOTFIX_VERSION 'a'
8383

8484
/* Define the following symbol for backward compatibility */
8585
#define EL_PRODUCT_THREADX

ports/arc_em/metaware/inc/tx_port.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ void _tx_initialize_start_interrupts(void);
308308

309309
#ifdef TX_THREAD_INIT
310310
CHAR _tx_version_id[] =
311-
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARCv2_EM/MetaWare Version 6.5.1.202602 *";
311+
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARCv2_EM/MetaWare Version 6.5.1.202602a *";
312312
#else
313313
#ifdef TX_MISRA_ENABLE
314314
extern CHAR _tx_version_id[100];

ports/arc_hs/metaware/inc/tx_port.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ VOID tx_thread_register_bank_assign(VOID *thread_ptr, UINT register_bank);
322322

323323
#ifdef TX_THREAD_INIT
324324
CHAR _tx_version_id[] =
325-
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARC_HS/MetaWare Version 6.5.1.202602 *";
325+
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARC_HS/MetaWare Version 6.5.1.202602a *";
326326
#else
327327
#ifdef TX_MISRA_ENABLE
328328
extern CHAR _tx_version_id[100];

ports/arm11/ac5/inc/tx_port.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture);
311311

312312
#ifdef TX_THREAD_INIT
313313
CHAR _tx_version_id[] =
314-
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARM11/AC5 Version 6.5.1.202602 *";
314+
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARM11/AC5 Version 6.5.1.202602a *";
315315
#else
316316
extern CHAR _tx_version_id[];
317317
#endif

ports/arm11/gnu/example_build/build_threadx.sh

Lines changed: 260 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/bin/bash
2+
##############################################################################
3+
# Copyright (c) 2024 Microsoft Corporation
4+
# Copyright (c) 2026 Eclipse ThreadX contributors
5+
#
6+
# This program and the accompanying materials are made available under the
7+
# terms of the MIT License which is available at
8+
# https://opensource.org/licenses/MIT.
9+
#
10+
# SPDX-License-Identifier: MIT
11+
#
12+
# AI Disclosure: This file was largely AI-generated by Copilot (Claude Sonnet 4.6).
13+
# The AI-generated portions may be considered public domain (CC0-1.0)
14+
# and not subject to the project's licence. The human contributor has
15+
# reviewed and verified that the code is correct.
16+
#
17+
# SPDX-License-Identifier: MIT and CC0-1.0
18+
##############################################################################
19+
20+
set -e
21+
cd "$(dirname "$0")"
22+
23+
arm-none-eabi-gcc -c -g -mcpu=arm1136j-s reset.S
24+
arm-none-eabi-gcc -c -g -mcpu=arm1136j-s crt0.S
25+
arm-none-eabi-gcc -c -g -mcpu=arm1136j-s tx_initialize_low_level.S
26+
arm-none-eabi-gcc -c -g -mcpu=arm1136j-s -I../../../../common/inc -I../inc sample_threadx.c
27+
arm-none-eabi-ld -A arm1136j-s -T sample_threadx.ld reset.o crt0.o tx_initialize_low_level.o sample_threadx.o tx.a libc.a libnosys.a libgcc.a -o sample_threadx.out -M > sample_threadx.map
28+

ports/arm11/gnu/inc/tx_port.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture);
300300

301301
#ifdef TX_THREAD_INIT
302302
CHAR _tx_version_id[] =
303-
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARM11/GNU Version 6.5.1.202602 *";
303+
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARM11/GNU Version 6.5.1.202602a *";
304304
#else
305305
extern CHAR _tx_version_id[];
306306
#endif

ports/arm11/iar/inc/tx_port.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ void _tx_thread_interrupt_restore(UINT old_posture);
366366

367367
#ifdef TX_THREAD_INIT
368368
CHAR _tx_version_id[] =
369-
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARM11/IAR Version 6.5.1.202602 *";
369+
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARM11/IAR Version 6.5.1.202602a *";
370370
#else
371371
#ifdef TX_MISRA_ENABLE
372372
extern CHAR _tx_version_id[100];

ports/arm9/ac5/inc/tx_port.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture);
313313

314314
#ifdef TX_THREAD_INIT
315315
CHAR _tx_version_id[] =
316-
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARM9/AC5 Version 6.5.1.202602 *";
316+
"(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX contributors. * ThreadX ARM9/AC5 Version 6.5.1.202602a *";
317317
#else
318318
extern CHAR _tx_version_id[];
319319
#endif

0 commit comments

Comments
 (0)