Defines | |
#define | RCC_MCO_NoClock ((uint8_t)0x00) |
#define | RCC_MCO_SYSCLK ((uint8_t)0x04) |
#define | RCC_MCO_HSI ((uint8_t)0x05) |
#define | RCC_MCO_HSE ((uint8_t)0x06) |
#define | RCC_MCO_PLLCLK_Div2 ((uint8_t)0x07) |
#define | IS_RCC_MCO(MCO) |
#define RCC_MCO_NoClock ((uint8_t)0x00) |
#define RCC_MCO_SYSCLK ((uint8_t)0x04) |
#define RCC_MCO_HSI ((uint8_t)0x05) |
#define RCC_MCO_HSE ((uint8_t)0x06) |
#define RCC_MCO_PLLCLK_Div2 ((uint8_t)0x07) |
#define IS_RCC_MCO | ( | MCO | ) |
(((MCO) == RCC_MCO_NoClock) || ((MCO) == RCC_MCO_HSI) || \ ((MCO) == RCC_MCO_SYSCLK) || ((MCO) == RCC_MCO_HSE) || \ ((MCO) == RCC_MCO_PLLCLK_Div2))
Referenced by RCC_MCOConfig().