AURIX TC375 ADS demo: update for tricore-gcc port support - #42
Open
ruka77S wants to merge 1 commit into
Open
Conversation
Signed-off-by: jinfeiaden@gmail.com <Fei.Jin@infineon.com>
ruka77S
force-pushed
the
demo/tc375-gcc
branch
from
August 31, 2026 11:11
f2b76d4 to
8e7fb02
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Updates the AURIX_TC375_ADS demo so it can support tricore-gcc freertos port now shipped in AURIX™ Development Studio (ADS), in addition to the existing TASKING port. This is the demo-side companion to the new GCC/AURIX_TC3xx kernel port added in FreeRTOS-Kernel-Partner-Supported-Ports#33.
Changes:
AURIX_TC375_ADS/README.md
Note that ADS bundles a free GCC compiler alongside TASKING.
Section 4 now tells the user they can pick either the Tasking/AURIX_TC3xx or the GCC/AURIX_TC3xx port from the Partner Supported Ports repository.
AURIX_TC375_ADS/Blinky/Configurations/FreeRTOSConfig.h and AURIX_TC375_ADS/GPT12_Printf/Configurations/FreeRTOSConfig.h
Split the configASSERT() compiler guard so both toolchains are covered explicitly:
TASKING — unchanged (__disable() / __debug()).
HIGHTEC && clang — HighTec clang for TriCore, uses __builtin_tricore_disable() / _builtin_tricore_debug().
GNUC && !HIGHTEC — plain tricore-gcc, same builtins.
Remove the unused Testing block (INCLUDE_eTaskGetState, configPRINTF, configTASK_NOTIFICATION_ARRAY_ENTRIES, and the configSTART*_TESTS list) that was carried over from an earlier full-test-suite configuration and is not referenced by either of the two shipping demos. This keeps the FreeRTOSConfig.h shown in the README aligned with what the demos actually use.
Related Issue
None. Companion PR: FreeRTOS-Kernel-Partner-Supported-Ports#33 (Add Infineon AURIX TC3xx tricore-gcc port).
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.