diff options
| author | Frédéric Desbiens <[email protected]> | 2026-02-26 17:28:26 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-02-26 17:28:26 -0500 |
| commit | 3bbc096d7829841224079763b93c2075d6190194 (patch) | |
| tree | 463f2cb12e48a9b882728c380de846069119f2e9 | |
| parent | 8f126ee4143d178a8a078c91110745b7ace9cc8f (diff) | |
| parent | c62ed82b1a6348c12546c612bf1caab22f82cbee (diff) | |
Merge pull request #503 from fdesbiens/issue499
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 |
