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
339 B
16 lines
339 B
#pragma once
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct
|
|
{
|
|
bool wifi_connect_flag;
|
|
uint8_t wifi_max_connect_num;
|
|
} wifi_structer_t;
|
|
|
|
void T_wifi_init(void);
|
|
void T_wifi_registered_cb(void);
|
|
void T_wifi_start_connect(void);
|
|
void T_wifi_stop_connect(void);
|
|
bool T_wifi_connect_timeout(void);
|
|
void T_wifi_send_data(void);
|