Skip to content

Update the tx_queue_create() API description #46

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rtos-docs/threadx/chapter4.md
Original file line number Diff line number Diff line change
Expand Up @@ -2173,7 +2173,7 @@ This service creates a message queue that is typically used for interthread comm

- *queue_ptr*: Pointer to a message queue control block.
- *name_ptr*: Pointer to the name of the message queue.
- *message_size*: Specifies the size of each message in the queue. Message sizes range from 1 32-bit word to 16 32-bit words. Valid message size options are numerical values from 1 through 16, inclusive.
- *message_size*: Specifies the size of each message in the queue. Message sizes range from 1 32-bit word to **TX_QUEUE_MESSAGE_MAX_SIZE** 32-bit words. Valid message size options are numerical values from 1 through **TX_QUEUE_MESSAGE_MAX_SIZE**, inclusive. **TX_QUEUE_MESSAGE_MAX_SIZE** is set by default to 16.
- *queue_start*: Starting address of the message queue. The starting address must be aligned to the size of the ULONG data type.
- *queue_size*: Total number of bytes available for the message queue.

Expand Down