aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Palsson2012-06-11 12:45:58 +0000
committerKarl Palsson2012-06-12 20:48:11 +0000
commit9531d653fb83bd9864a882a190f286a92499ca72 (patch)
tree6394be1116f7e80dc7060bd0facfb30289ac254b
parent154f67598bb06c0c152bf121979c2292f7f10a84 (diff)
Even/Odd parity bit configs used the wrong bit
Checked F10x, F100, F4 and L1 reference manuals. Confirmed with my user application code.
-rw-r--r--include/libopencm3/stm32/usart.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libopencm3/stm32/usart.h b/include/libopencm3/stm32/usart.h
index d9f2c8d..5c7f285 100644
--- a/include/libopencm3/stm32/usart.h
+++ b/include/libopencm3/stm32/usart.h
@@ -270,8 +270,8 @@
/* CR1_PCE / CR1_PS combined values */
#define USART_PARITY_NONE 0x00
-#define USART_PARITY_ODD USART_CR1_PS
-#define USART_PARITY_EVEN (USART_CR1_PS | USART_CR1_PCE)
+#define USART_PARITY_EVEN USART_CR1_PCE
+#define USART_PARITY_ODD (USART_CR1_PS | USART_CR1_PCE)
#define USART_PARITY_MASK (USART_CR1_PS | USART_CR1_PCE)
/* CR1_TE/CR1_RE combined values */