24 lines
512 B
C
24 lines
512 B
C
|
#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
|