mirror of
https://github.com/NevermindZZT/letter-shell.git
synced 2025-01-01 09:58:41 +08:00
1624e4835c
新增 支持在程序中调用接口直接运行命令 修复 直接运行未导出命令时,参数错误时的错误处理
21 lines
284 B
C
21 lines
284 B
C
/**
|
|
* @file shell_port.h
|
|
* @author Letter (NevermindZZT@gmail.com)
|
|
* @brief
|
|
* @version 0.1
|
|
* @date 2019-02-22
|
|
*
|
|
* @copyright (c) 2019 Letter
|
|
*
|
|
*/
|
|
|
|
#ifndef __SHELL_PORT_H__
|
|
#define __SHELL_PORT_H__
|
|
|
|
#include "shell.h"
|
|
|
|
extern Shell shell;
|
|
|
|
void userShellInit(void);
|
|
#endif
|