This commit is contained in:
刘可亮
2025-07-22 11:15:46 +08:00
parent d164b333ed
commit 11c97ef399
2870 changed files with 951307 additions and 26675 deletions

View File

@@ -0,0 +1,17 @@
#ifndef _CLI_CMD_H_
#define _CLI_CMD_H_
#include "rwnx_defs.h"
typedef void (*CliCb)(char *rsp);
static int parse_line (char *line, char *argv[]);
int handle_private_cmd(struct rwnx_hw *rwnx_hw, char *command);
unsigned int command_strtoul(const char *cp, char **endp, unsigned int base);
bool aic_cli_cmd_init(struct rwnx_hw *rwnx_hw);
bool aic_cli_cmd_deinit(struct rwnx_hw *rwnx_hw);
void CliSetCb(CliCb cb);
int Cli_RunCmd(char *CmdBuffer);
#endif