diff options
| author | Frédéric Desbiens <[email protected]> | 2025-12-02 09:25:31 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-02 09:25:31 -0500 |
| commit | 95c2c323af2f295fc96fbcf276fa9fb7b1962541 (patch) | |
| tree | 0c50050c30ef27c5d317a861487a7dfd32871e83 | |
| parent | 99d7cfb39d6d4f99ff69a58513814cfedfda1d36 (diff) | |
| parent | 04d43112de4ceecfcf01139a7e2ed759772cb82f (diff) | |
Merge pull request #223 from ayedm1/use_ux_prefix
Use the UX prefix instead of TX to avoid a compilation issue in standalone mode
| -rw-r--r-- | common/core/src/ux_utility_debug_log.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/common/core/src/ux_utility_debug_log.c b/common/core/src/ux_utility_debug_log.c index c72d02b..34b4172 100644 --- a/common/core/src/ux_utility_debug_log.c +++ b/common/core/src/ux_utility_debug_log.c @@ -62,7 +62,7 @@ /* */ /* _ux_utility_string_length_check Check C string and return */ /* its length if null-terminated */ -/* _tx_time_get Return system clock time */ +/* _ux_utility_time_get Return system clock time */ /* */ /* CALLED BY */ /* */ @@ -79,6 +79,10 @@ /* refer to TX symbols instead */ /* of using them directly, */ /* resulting in version 6.1 */ +/* 30-11-2025 Mohamed Ayed Modified comment(s), */ +/* used UX prefix to refer to */ +/* TX symbols instead of using */ +/* them directly, */ /* */ /**************************************************************************/ VOID _ux_utility_debug_log(UCHAR *debug_location, UCHAR *debug_message, ULONG debug_code, @@ -136,8 +140,8 @@ UX_INTERRUPT_SAVE_AREA _ux_utility_memory_copy(_ux_system -> ux_system_debug_log_head, "At time : ", 10); /* Use case of memcpy is verified. */ _ux_system -> ux_system_debug_log_head += 10; - /* Get the time value from TX. */ - current_time = _tx_time_get(); + /* Get the time value. */ + current_time = _ux_utility_time_get(); /* Reset the value of the length.*/ parameter_length = 0; |
