diff options
Diffstat (limited to 'common/inc/tx_api.h')
| -rw-r--r-- | common/inc/tx_api.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/common/inc/tx_api.h b/common/inc/tx_api.h index 3ff05f4b..629d1ab9 100644 --- a/common/inc/tx_api.h +++ b/common/inc/tx_api.h @@ -148,7 +148,9 @@ extern "C" { #define AZURE_RTOS_THREADX #define THREADX_MAJOR_VERSION 6 #define THREADX_MINOR_VERSION 4 -#define THREADX_PATCH_VERSION 2 +#define THREADX_PATCH_VERSION 3 +#define THREADX_BUILD_VERSION 202503 +#define THREADX_HOTFIX_VERSION '' /* Define the following symbol for backward compatibility */ #define EL_PRODUCT_THREADX @@ -328,6 +330,12 @@ extern "C" { #define TX_TIMER_TICKS_PER_SECOND (100UL) #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: |
