Difference between revisions of "SHIP:Constants:UART FLAGS"

From Serious Documentation
Jump to: navigation, search
(Created page with "The name '''UART_FLAGS''' refers to a {{Node|group}} of {{Node|constant|constants}} used to configure a UART connection. The {{Node|constant|constants}} in this group are: * {...")
 
Line 1: Line 1:
 
The name '''UART_FLAGS''' refers to a {{Node|group}} of {{Node|constant|constants}} used to configure a UART connection. The {{Node|constant|constants}} in this group are:
 
The name '''UART_FLAGS''' refers to a {{Node|group}} of {{Node|constant|constants}} used to configure a UART connection. The {{Node|constant|constants}} in this group are:
* {{Const|UART_FLAGS|UART_FLAGS.PARITY_NONE}} -
+
 
* {{Const|UART_FLAGS|UART_FLAGS.PARITY_EVEN}} -
+
Parity:
* {{Const|UART_FLAGS|UART_FLAGS.PARITY_ODD}} -
+
* {{Const|UART_FLAGS|UART_FLAGS.PARITY_NONE}}
* {{Const|UART_FLAGS|UART_FLAGS.PARITY_MARK}} -
+
* {{Const|UART_FLAGS|UART_FLAGS.PARITY_EVEN}}
* {{Const|UART_FLAGS|UART_FLAGS.PARITY_SPACE}} -
+
* {{Const|UART_FLAGS|UART_FLAGS.PARITY_ODD}}
* {{Const|UART_FLAGS|UART_FLAGS.BITS_7}} -
+
* {{Const|UART_FLAGS|UART_FLAGS.PARITY_MARK}}
* {{Const|UART_FLAGS|UART_FLAGS.BITS_8}} -
+
* {{Const|UART_FLAGS|UART_FLAGS.PARITY_SPACE}}
* {{Const|UART_FLAGS|UART_FLAGS.STOP_1}} -
+
 
* {{Const|UART_FLAGS|UART_FLAGS.STOP_2}} -
+
Character Length:
 +
* {{Const|UART_FLAGS|UART_FLAGS.BITS_7}}
 +
* {{Const|UART_FLAGS|UART_FLAGS.BITS_8}}
 +
 
 +
Stop Bits:
 +
* {{Const|UART_FLAGS|UART_FLAGS.STOP_1}}
 +
* {{Const|UART_FLAGS|UART_FLAGS.STOP_2}}
  
 
These {{Node|constant|constants}} should referred to in the format "'''UART_FLAGS.PARITY_NONE'''". Do '''not''' create any other node with the exact name "UART_FLAGS".
 
These {{Node|constant|constants}} should referred to in the format "'''UART_FLAGS.PARITY_NONE'''". Do '''not''' create any other node with the exact name "UART_FLAGS".

Revision as of 16:54, 1 February 2013

The name UART_FLAGS refers to a group of constants used to configure a UART connection. The constants in this group are:

Parity:

Character Length:

Stop Bits:

These constants should referred to in the format "UART_FLAGS.PARITY_NONE". Do not create any other node with the exact name "UART_FLAGS".