Skip to content

Commit

Permalink
applet.uart: use no parity by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Sep 10, 2018
1 parent 724813e commit a47f3e3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions software/glasgow/applet/uart.py
Expand Up @@ -52,6 +52,7 @@ def add_build_arguments(cls, parser, access):
help="set baud rate to RATE bits per second (default: %(default)s)")
parser.add_argument(
"--parity", metavar="PARITY", choices=("none", "zero", "one", "odd", "even"),
default="none",
help="send and receive parity bit as PARITY (default: %(default)s)")
parser.add_argument(
"--tolerance", metavar="PPM", type=int, default=50000,
Expand Down

0 comments on commit a47f3e3

Please sign in to comment.