如下: LED0, LED1 管脚分别为GPIOF9,FGPIO10 在操作寄存器点亮LED0灯后,我想延时一段时间后关闭LED0, 但加上关闭LED0的代码后,LED0 直接不亮了, 屏蔽关闭LED0 的代码后,LED0可以亮。 试过delay(500000) delay(5000) 但都无用。 求各位前辈指点。谢谢。
第一段代码为 头文件 stm32f42xx.h
- /*
- 正点原子F407,主控芯片STM32F407ZGXX
- */
-
-
- typedef unsigned int uint32_t;
- typedef unsigned short uint16_t;
- //#define HC574_PORT *(uint32_t *) (0x64001000 + 0x00)
- #define RCC_AHB1ENR *(uint32_t *) (0x40023800 + 0x30U)
- #define GPIOF_MODE *(uint32_t *) (0x40021400 + 0x00U)
- #define GPIOF_ODR *(uint32_t *) (0x40021400 + 0x14U)
- //#define GPIO_ODR *(uint32_t *)(0x40020C00 + 0x00)
以下为main函数
- #include"stm32f42xx.h"
-
- void delay(uint16_t time) //us
- {
- uint16_t i=0;
- while(time--)
- {
- i=10; //自己定义
- while(i--);
- }
- }
- int main(void)
- {
- // LED0 LED1 PF9 PF10 开时钟源GPIOF
- RCC_AHB1ENR |= (1U << 5);
-
- GPIOF_MODE |= (1U << (2*9)); // 控制GPIO模式输出
- GPIOF_ODR &= ~(1U << 9); // 点亮LED0
- delay(5000);
- //GPIOF_ODR |= (1U << 9); // 熄灭LED0
- #if 0
- GPIOF_MODE |= (1U << (2*10)); // 点灯LED1 PF10
- GPIOF_ODR &= ~(1U << 10); // 点亮LED1
- delay(500);
- while(1)
- {
- GPIOF_ODR |= (1U << 9); // 熄灭LED0
- GPIOF_ODR &= ~(1U << 10); // 点亮LED1
- delay(500);
-
- GPIOF_ODR &= ~(1U << 9); // 点亮LED0
- GPIOF_ODR |= (1U << 10); // 熄灭LED1
- delay(500);
-
- }
- #endif
- }
-
- void SystemInit(void)
- {
-
- }
-
|