13 lines
232 B
C
Raw Normal View History

2025-05-14 11:26:23 +08:00
#ifndef __NET_CLIENT_H__
#define __NET_CLIENT_H__
#ifdef __cplusplus
extern "C" {
#endif
void net_sta_connect(char* ssid,char *password);
void net_check_start();
void net_check_stop();
#ifdef __cplusplus
}
#endif
#endif