diff options
-rw-r--r-- | target/serial/serial.c | 4 |
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 |