forked from electro/esp-irblaster
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.
34 lines
635 B
34 lines
635 B
//
|
|
// Created by MightyPork on 2018/12/08.
|
|
//
|
|
#include "settings.h"
|
|
#include "console/cmd_common.h"
|
|
#include <console/cmddef.h>
|
|
|
|
|
|
static int cmd_dump(console_ctx_t *ctx, cmd_signature_t *reg)
|
|
{
|
|
static struct {
|
|
struct arg_end *end;
|
|
} cmd_args;
|
|
|
|
if (reg) {
|
|
cmd_args.end = arg_end(1);
|
|
|
|
reg->argtable = &cmd_args;
|
|
reg->command = "dump";
|
|
reg->help = "Dump node info";
|
|
return 0;
|
|
}
|
|
|
|
console_printf("WiFi enabled: %d\r\n", gSettings.wifi_enabled);
|
|
|
|
// TODO show more settings
|
|
|
|
return 0;
|
|
}
|
|
|
|
void register_cmd_dump(void)
|
|
{
|
|
console_cmd_register(cmd_dump, "dump");
|
|
}
|
|
|