telnet/demo_for_arm_board/inc/shellcmd.h

24 lines
512 B
C
Raw Normal View History

2024-04-24 02:32:26 +00:00
#ifndef _SHELLCMD_H
#define _SHELLCMD_H
#include "config.h"
#ifdef __cplusplus
extern "C" {
#endif
void shell_init(void);
// int32_t can_status(uint32_t argc, uint8_t *argv[]);
// int32_t show_net_node(uint32_t argc, uint8_t *argv[]);
// int32_t alloc_mem_total(uint32_t argc, uint8_t *argv[]);
/*-----------------------------函数声明---------------------------------------*/
void shellFunTest(char *args);
void can_status(char *args);
void show_net_node(char *args);
#ifdef __cplusplus
}
#endif
#endif