Skip to content

Commit

Permalink
Issue 69 - Update command config docs with byte ordering details
Browse files Browse the repository at this point in the history
  • Loading branch information
MJJoyce committed Sep 5, 2019
1 parent cc6b5cc commit b45d315
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/source/command_intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ type:
A **string** specifying the data type of the argument. You can see all the valid primitive types that will be accepted here by looking at ``ait.core.dtype.PrimitiveTypes``.

bytes:
Specifies which byte(s) in the command filled by this argument. This can be specified as a single integer or as a list of integers (in the case of a range of bytes).
Specifies which byte(s) in the command filled by this argument. This can be specified as a single integer or as a list of integers (in the case of a range of bytes). Byte values must be specified in correct numerical order when a command has multiple Arguments or Fixed attributes.

desc (optional):
A **string** for providing a description of the argument.
Expand All @@ -196,7 +196,7 @@ type:
A **string** specifying the data type of the argument. You can see all the valid primitive types that will be accepted here by looking at ``ait.core.dtype.PrimitiveTypes``.

bytes:
Specifies which byte(s) in the command filled by this constant. This can be specified as a single integer or as a list of integers (in the case of a range of bytes).
Specifies which byte(s) in the command filled by this constant. This can be specified as a single integer or as a list of integers (in the case of a range of bytes). Byte values must be specified in correct numerical order when a command has multiple Arguments or Fixed attributes.

name (optional):
A **string** denoting the name of this constant.
Expand Down

0 comments on commit b45d315

Please sign in to comment.