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.
28 lines
468 B
28 lines
468 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"
|
|
|
|
void T_wifi_init(void) {}
|
|
|
|
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) {}
|