shuichan_new/STM32F103_App1/Inc/app_common.h

33 lines
628 B
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 __APP_COMMON_H
#define __APP_COMMON_H
/* 应用层公共头文件:集中包含项目所需的标准库和硬件模块头文件 */
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include "main.h"
#include "stm32f1xx_hal.h"
#include "system.h"
#include "log.h"
#include "iic.h"
#include "24c02.h"
#include "uart.h"
#include "adc.h"
#include "led.h"
#include "relay.h"
#include "network.h"
#include "ota_app.h"
#include "feed_scale.h"
#include "air780e.h"
#include "w25q64.h"
/* OTA 业务健康超时MQTT 就绪后若超过该时间仍未完成首次 MPUB主动复位 */
#define OTA_HEALTH_TIMEOUT_MS (1u * 60u * 1000u)
#endif /* __APP_COMMON_H */