summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2009-03-25 00:03:45 -0700
committerKeith Packard <keithp@keithp.com>2009-03-25 00:03:45 -0700
commit62744c186792739c3bf5798c80ff87c69fbe2b65 (patch)
tree3482b597b4be98c6c6201cdc7a688a044e408d82
parent9e96107d5d1a9681b07c36bb5860c748bfe10ec0 (diff)
Flip start/stop bits around
-rw-r--r--target/serial/serial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/serial/serial.c b/target/serial/serial.c
index b0aead74..6065d971 100644
--- a/target/serial/serial.c
+++ b/target/serial/serial.c
@@ -193,8 +193,8 @@ usart_init(void)
UxUCR_BIT9_8_BITS |
UxUCR_PARITY_DISABLE |
UxUCR_SPB_1_STOP_BIT |
- UxUCR_STOP_HIGH |
- UxUCR_START_LOW);
+ UxUCR_STOP_LOW |
+ UxUCR_START_HIGH);
}
void