Files
HBshuiwuConcentrator/APP/Init.h
2025-12-15 16:07:49 +08:00

44 lines
1.1 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#ifndef _INIT_H
#define _INIT_H
/*——————————————————————————
* 文 件 名Init.h
* 文件说明: 初始化源文件
*
* 当前版本V8.0
* 作 者ZL
* 开始日期2013-12-30
*———————————————————————————*/
#include "Basedefine.h"
/*************函数声明 **************/
/*——————————————————————————
* 函 数 名RCC_Init
* 输入参数None
* 输出参数None
* 返 回 值None
* 功能说明RCC时钟初始化
*——————————————————————————*/
void RCC_Init(void);
/*——————————————————————————
* 函 数 名Nvic_Init
* 输入参数None
* 输出参数None
* 返 回 值None
* 功能说明:中断向量初始化
*——————————————————————————*/
void Nvic_Init(void);
/*——————————————————————————
* 函 数 名Iwdg_Init
* 输入参数None
* 输出参数None
* 返 回 值None
* 功能说明:看门狗程序初始化
*——————————————————————————*/
void Iwdg_Init(u8 timeout);
#define GIPO_CFG(name) name##_PIN_CFG
void gpio_init(st_gpio_config ioconfig );
#endif