You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
334 B

#pragma once
#include <stdbool.h>
#include <stdint.h>
typedef struct
{
bool wifi_connect_flag;
uint8_t wifi_max_connect_num;
} wifi_config_structer_t;
void wifi_init(void);
void wifi_registered_cb(void);
void wifi_start_connect(void);
void wifi_stop_connect(void);
bool wifi_connect_timeout(void);
void wifi_send_data(void);