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.
 
 
 
 

32 lines
610 B

/**
* @file wifi.c
* @author Finny (tianjialong0106@163.com)
* @brief
* @version 0.1
* @date 2022-09-26
*
* @copyright Copyright (c) 2022
*
*/
#include "wifi.h"
#define WIFI_SSID 1
#define WIFI_NAME "ZWSD_ESP32"
#define WIFI_PASSWORD "zwsdzwsd"
static wifi_structer_t *wifi_structer_s;
void T_wifi_init(wifi_structer_t *wifi_structer) { wifi_structer_s = wifi_structer; }
void T_wifi_registered_cb(void) {}
void T_wifi_connect(void) {}
void T_wifi_disconnect(void) {}
bool T_wifi_connect_timeout(void) { return true; }
void T_wifi_send_data(void) {}
bool T_wifi_distribution_network(void) {}