Even/Odd parity bit configs used the wrong bit

Checked F10x, F100, F4 and L1 reference manuals.
Confirmed with my user application code.
This commit is contained in:
Karl Palsson 2012-06-11 12:45:58 +00:00 committed by Karl Palsson
parent 154f67598b
commit 9531d653fb

View File

@ -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 */