[mw_shl_code=c,true]#include "stm32f4xx.h"
#include "usart.h"
#include "delay.h"
//ALIENTEK ̽Ë÷ÕßSTM32F407¿ª·¢°å ʵÑé0
//STM32F4¹¤³ÌÄ£°å-¿âº¯Êý°æ±¾
//¼¼ÊõÖ§³Ö£º
www.openedv.com
//ÌÔ±¦µêÆÌ£º
http://eboard.taobao.com
//¹ãÖÝÊÐÐÇÒíµç×ӿƼ¼ÓÐÏÞ¹«Ë¾
//×÷ÕߣºÕýµãÔ­×Ó @ALIENTEK
int main(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);//??GPIOF??
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOE, ENABLE);//??GPIOF??
//GPIOF9,F10?????
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9 | GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;//??????
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;//????
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;//100MHz
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//??
GPIO_Init(GPIOF, &GPIO_InitStructure);//???
GPIO_SetBits(GPIOF,GPIO_Pin_9 | GPIO_Pin_10);//GPIOF9,F10???,??
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3|GPIO_Pin_4;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;//??????
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;//????
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;//100MHz
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//??
GPIO_Init(GPIOE, &GPIO_InitStructure);//???
delay_init(168);
IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable);
IWDG_SetPrescaler(IWDG_Prescaler_64);
IWDG_SetReload(500);
IWDG_Enable();
//IWDG_ReloadCounter();
PFout(9) = 1; //Ãð
delay_ms(300);
//IWDG_ReloadCounter();
while(1)
{
PFout(9) = 0; //ÁÁ
if(PEin(2)==0)
{
delay_ms(10); //Ïû¶¶
if(PEin(2)==0)
{
IWDG_ReloadCounter();
}
}
}
}
[/mw_shl_code]
探索者F4开发板。
预分频设置64,rlr设置500,和例程中一样,1s复位。但是我把IWDG_ReloadCounter(); 语句放在不同位置出现计时不一样的情况。放在注释掉的两个地方的时候是正常的,1秒复位,灯灭300ms再亮700ms,循环。放在while循环中灯亮的时间非常长,更像从0xFFF开始递减。我按了KEY2键喂狗,按键后计数器像是从500递减,1s复位。然后又变成像是从0xFFF开始递减,灯亮的时间非常长,再复位(灯灭0.3s)。这是什么情况?
试了,没有误动作。不按键不会打印字符。按一下键喂狗,rlr里写进500,不按键rlr里是0xFFF(从时间上看像)。
一周热门 更多>