diff options
| author | Frédéric Desbiens <[email protected]> | 2026-02-26 17:22:25 -0500 |
|---|---|---|
| committer | Frédéric Desbiens <[email protected]> | 2026-02-26 17:22:25 -0500 |
| commit | c62ed82b1a6348c12546c612bf1caab22f82cbee (patch) | |
| tree | 0b891b3bc26fe1c025ae3768dc3090a863c92852 | |
| parent | 579246b4a21dc4da4a482be605cb120b7e6672a3 (diff) | |
Added a missing symbol to tx_api.h for TX SMP.
| -rw-r--r-- | common_smp/inc/tx_api.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common_smp/inc/tx_api.h b/common_smp/inc/tx_api.h index ae5ffc8f..cc378f16 100644 --- a/common_smp/inc/tx_api.h +++ b/common_smp/inc/tx_api.h @@ -334,6 +334,14 @@ extern "C" { #endif +/* Define the default maximum message size in a queue. The default value is TX_16_ULONG, but may + be customized in tx_user.h or as a compilation option. */ + +#ifndef TX_QUEUE_MESSAGE_MAX_SIZE +#define TX_QUEUE_MESSAGE_MAX_SIZE TX_16_ULONG +#endif + + /* Event numbers 0 through 4095 are reserved by Azure RTOS. Specific event assignments are: ThreadX events: 1-199 |
