From a47f3e3e6b4f279dac21ca413d7f2c984e074b62 Mon Sep 17 00:00:00 2001 From: whitequark Date: Mon, 10 Sep 2018 01:25:18 +0000 Subject: [PATCH] applet.uart: use no parity by default. --- software/glasgow/applet/uart.py | 1 + 1 file changed, 1 insertion(+) diff --git a/software/glasgow/applet/uart.py b/software/glasgow/applet/uart.py index e21102c66..f38919602 100644 --- a/software/glasgow/applet/uart.py +++ b/software/glasgow/applet/uart.py @@ -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,