Files

29 lines
847 B
C
Raw Permalink Normal View History

2026-03-31 15:46:04 +08:00
/**
******************************************************************************
2026-05-21 12:19:01 +08:00
* @file User\Driver\drv_init.c
* @author
2026-03-31 15:46:04 +08:00
* @version v0.1
2026-05-21 12:19:01 +08:00
* @date 2026-05-21
* @brief
2026-03-31 15:46:04 +08:00
******************************************************************************
*/
/* Includes -------------------------------------------------------------------*/
#include "drv_init.h"
#include <stdint.h>
#include "flash_config.h"
2026-03-31 15:46:04 +08:00
/* code -----------------------------------------------------------------------*/
2026-05-21 12:19:01 +08:00
/**
* @brief drv_all_init
2026-03-31 15:46:04 +08:00
* @note none
* @param none
* @retval none
*/
2026-05-21 10:01:28 +08:00
void drv_all_init(void)
2026-03-31 15:46:04 +08:00
{
2026-04-30 17:16:01 +08:00
AIR724_RESET(); /* AIR724 复位 */
2026-05-21 10:01:28 +08:00
drv_usart_init();/* 初始化所有串口 */
stm_flash_init();/* 初始化flash管理器 */
2026-03-31 15:46:04 +08:00
}