/** * @file app_main.h * @author impressionyang (impressionyang@outlook.com) * @brief * @version 0.1 * @date 2022-09-29 * _ _ * (_)_ _ ___ _______ ___ ___ (_)__ ___ __ _____ ____ ___ _ * / / ' \/ _ \/ __/ -_|_-<(_- * Date Version Author Description * 2022-09-29 v1.0 impressionyang 内容 * */ #ifndef __APP_MAIN_H__ #define __APP_MAIN_H__ #include #ifdef __cplusplus extern "C" { #endif typedef struct _app_main_handle_ { uint8_t have_network; } app_main_handle_t; /** * * @brief 获取网络连接状态 * @author impressionyang (impressionyang@outlook.com) * @return uint8_t * * @details */ uint8_t app_main_handle_get_nework_state(); #ifdef __cplusplus } #endif #endif//__APP_MAIN_H__