mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-25 21:48:54 +00:00
18 lines
457 B
C
18 lines
457 B
C
#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
|