mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2025-08-08 02:47:16 +00:00
13 lines
266 B
C
13 lines
266 B
C
#ifndef CMD_SCAN_WIFI_H
|
|
#define CMD_SCAN_WIFI_H
|
|
|
|
static struct {
|
|
// struct arg_int *gpio;
|
|
struct arg_int *dump;
|
|
struct arg_end *end;
|
|
} scan_wifi_args;
|
|
|
|
static int exec_scan_wifi_cmd(int argc, char **argv);
|
|
static void register_scan_wifi_cmd(void);
|
|
|
|
#endif |