:715B : :1 :2022-09-19 13:17:41
stm32hal库开发例程(main.c)如果开发者对于本文件有需要的可以参考,
#include "sys.h"
#include "delay.h"
#include "usart.h"
#include "led.h"
#include "key.h"
#include "wwdg.h"
/************************************************
int main(void)
{
HAL_Init(); //初始化HAL库
Stm32_Clock_Init(RCC_PLL_MUL9); //设置时钟,72M
delay_init(72); //初始化延时函数
uart_init(115200); //初始化串口
LED_Init(); //初始化LED
KEY_Init(); //初始化按键
LED0=0; //点亮LED0
delay_ms(300); //延时300ms再初始化看门狗,LED0的变化"可见"
WWDG_Init(0X7F,0X5F,WWDG_PRESCALER_8); //计数器值为7F,窗口寄存器为5F,分频数为8
while(1)
{
LED0=1; //熄灭LED灯
}。
02-03TCR-610P自动收卡机开发例程
10-17stm32h7b0vb开发例程
10-15QT5开发例程
10-12dsp28377xs epwm开发例程
10-12dsp28377xs ecap开发例程
10-12dsp28377xs cla开发例程
10-12dsp28377xs ADC开发例程
10-11DSP ADC开发例程
10-11DSP CAN开发例程