33 lines
888 B
C
33 lines
888 B
C
/**
|
||
******************************************************************************
|
||
* @file user\driver\drv_init.c
|
||
* @author luhuaishuai
|
||
* @version v0.1
|
||
* @date 2026-1-12
|
||
* @brief Briefly describe the function of your function
|
||
******************************************************************************
|
||
*/
|
||
/* Includes -------------------------------------------------------------------*/
|
||
#include "drv_init.h"
|
||
#include <stdint.h>
|
||
#include "flash_config.h"
|
||
|
||
/* code -----------------------------------------------------------------------*/
|
||
|
||
/**
|
||
* @brief drv_all_Init:所有传感器、外设芯片、外部设备初始化
|
||
*
|
||
* @note none
|
||
*
|
||
* @param none
|
||
*
|
||
* @retval none
|
||
*/
|
||
|
||
void drv_all_init(void)
|
||
{
|
||
AIR724_RESET(); /* AIR724 复位 */
|
||
drv_usart_init();/* 初始化所有串口 */
|
||
stm_flash_init();/* 初始化flash管理器 */
|
||
}
|