stm32f4: rcc: typo fix MCO2

Just a small typo I came across while trying to get MCO to work on my board.
The define is not used in any other files as far as I can tell, but of
course applications might break if they use the misspelt variant.
This commit is contained in:
Chris Sp 2018-08-07 12:19:35 +02:00 committed by Karl Palsson
parent ddc7ab8c6c
commit 8b1ac585df

View File

@ -168,7 +168,7 @@
@{*/ @{*/
/* MCO2: Microcontroller clock output 2 */ /* MCO2: Microcontroller clock output 2 */
#define RCC_CFGR_MCO2_SHIFT 30 #define RCC_CFGR_MCO2_SHIFT 30
#define RCC_CFGR_MC02_MASK 0x3 #define RCC_CFGR_MCO2_MASK 0x3
#define RCC_CFGR_MCO2_SYSCLK 0x0 #define RCC_CFGR_MCO2_SYSCLK 0x0
#define RCC_CFGR_MCO2_PLLI2S 0x1 #define RCC_CFGR_MCO2_PLLI2S 0x1
#define RCC_CFGR_MCO2_HSE 0x2 #define RCC_CFGR_MCO2_HSE 0x2