#include <stm32f4xx.h>
#define GPIO_Pin_6 0x0040 /* LED2 */
#define GPIO_Pin_6 0x0040 /* LED2 */
#define GPIO_Pin_7 0x0080 /* LED1 */
#define PLL_M 8
#define PLL_N 336
#define PLL_P 2
#define PLL_Q 7
void RCC_config(void);
void TIMER_config(void);
void GPIO_Config(void);
void Delay_ms(int nCount);
int main()
{
RCC_config();
TIMER_config();
GPIO_Config();
while(1)
{
// Pin_7灭,Pin_6亮
GPIOF->ODR &= ~GPIO_Pin_6;
GPIOF->ODR |= GPIO_Pin_7;
Delay_ms(1000);
// Pin_6灭,Pin_7亮
GPIOF->BSRRL |= GPIO_Pin_6;
GPIOF->BSRRH |= GPIO_Pin_7;