mirror of
https://github.com/NevermindZZT/letter-shell.git
synced 2025-01-21 10:02:54 +08:00
修复 编译问题
This commit is contained in:
parent
8c87c8cd22
commit
663f792c60
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,4 +1,5 @@
|
||||
CMakeFiles
|
||||
cmake_install.cmake
|
||||
CMakeCache.txt
|
||||
demo/x86-gcc/Makefile
|
||||
demo/x86-gcc/Makefile
|
||||
demo/x86-gcc/LetterShell
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
![version](https://img.shields.io/badge/version-3.1.0-brightgreen.svg)
|
||||
![standard](https://img.shields.io/badge/standard-c99-brightgreen.svg)
|
||||
![build](https://img.shields.io/badge/build-2021.05.09-brightgreen.svg)
|
||||
![build](https://img.shields.io/badge/build-2021.05.24-brightgreen.svg)
|
||||
![license](https://img.shields.io/badge/license-MIT-brightgreen.svg)
|
||||
|
||||
一个功能强大的嵌入式shell
|
||||
@ -108,7 +108,7 @@
|
||||
*
|
||||
* @return unsigned short 实际写入的字符数量
|
||||
*/
|
||||
typedef unsigned short (*shellWrite)(const char *data, unsigned short len);
|
||||
typedef unsigned short (*shellWrite)(char *data, unsigned short len);
|
||||
```
|
||||
|
||||
3. 申请一片缓冲区
|
||||
|
@ -139,7 +139,7 @@ typedef struct shell_command_cpp_key
|
||||
const char shellDesc##_value[] = #_desc; \
|
||||
extern "C" SHELL_USED const ShellCommandCppKey \
|
||||
shellKey##_value SHELL_SECTION("shellCommand") = \
|
||||
{ \
|
||||
{ \
|
||||
_attr|SHELL_CMD_TYPE(SHELL_TYPE_KEY), \
|
||||
_value, \
|
||||
(void (*)(Shell *))_func, \
|
||||
@ -152,3 +152,4 @@ typedef struct shell_command_cpp_key
|
||||
|
||||
#endif /**< __SHELL_CPP_H__ */
|
||||
|
||||
|
||||
|
17
src/shell.c
17
src/shell.c
@ -258,7 +258,7 @@ Shell* shellGetCurrent(void)
|
||||
* @param shell shell对象
|
||||
* @param data 字符数据
|
||||
*/
|
||||
static void shellWriteByte(Shell *shell, const char data)
|
||||
static void shellWriteByte(Shell *shell, char data)
|
||||
{
|
||||
shell->write(&data, 1);
|
||||
}
|
||||
@ -275,13 +275,13 @@ static void shellWriteByte(Shell *shell, const char data)
|
||||
unsigned short shellWriteString(Shell *shell, const char *string)
|
||||
{
|
||||
unsigned short count = 0;
|
||||
char *p = string;
|
||||
const char *p = string;
|
||||
SHELL_ASSERT(shell->write, return 0);
|
||||
while(*p++)
|
||||
{
|
||||
count ++;
|
||||
}
|
||||
return shell->write(string, count);
|
||||
return shell->write((char *)string, count);
|
||||
}
|
||||
|
||||
|
||||
@ -296,7 +296,7 @@ unsigned short shellWriteString(Shell *shell, const char *string)
|
||||
static unsigned short shellWriteCommandDesc(Shell *shell, const char *string)
|
||||
{
|
||||
unsigned short count = 0;
|
||||
char *p = string;
|
||||
const char *p = string;
|
||||
SHELL_ASSERT(shell->write, return 0);
|
||||
while (*p && *p != '\r' && *p != '\n')
|
||||
{
|
||||
@ -306,12 +306,12 @@ static unsigned short shellWriteCommandDesc(Shell *shell, const char *string)
|
||||
|
||||
if (count > 36)
|
||||
{
|
||||
shell->write(string, 36);
|
||||
shell->write((char *)string, 36);
|
||||
shell->write("...", 3);
|
||||
}
|
||||
else
|
||||
{
|
||||
shell->write(string, count);
|
||||
shell->write((char *)string, count);
|
||||
}
|
||||
return count > 36 ? 36 : 39;
|
||||
}
|
||||
@ -389,7 +389,7 @@ void shellScan(Shell *shell, char *fmt, ...)
|
||||
do {
|
||||
if (shell->read(&buffer[index], 1) == 1)
|
||||
{
|
||||
shell->write(buffer[index], 1);
|
||||
shell->write(&buffer[index], 1);
|
||||
index++;
|
||||
}
|
||||
} while (buffer[index -1] != '\r' && buffer[index -1] != '\n' && index < SHELL_SCAN_BUFFER);
|
||||
@ -1757,7 +1757,7 @@ void shellWriteEndLine(Shell *shell, char *buffer, int len)
|
||||
shellWriteString(shell, shell->parser.buffer);
|
||||
for (short i = 0; i < shell->parser.length - shell->parser.cursor; i++)
|
||||
{
|
||||
shell->write('\b', 1);
|
||||
shellWriteByte(shell, '\b');
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1927,3 +1927,4 @@ SHELL_EXPORT_CMD(
|
||||
SHELL_CMD_PERMISSION(0)|SHELL_CMD_TYPE(SHELL_TYPE_CMD_MAIN)|SHELL_CMD_DISABLE_RETURN,
|
||||
exec, shellExecute, execute function undefined);
|
||||
#endif
|
||||
|
||||
|
@ -360,7 +360,7 @@ typedef struct shell_def
|
||||
unsigned char tabFlag : 1; /**< tab标志 */
|
||||
} status;
|
||||
signed short (*read)(char *, unsigned short); /**< shell读函数 */
|
||||
signed short (*write)(const char *, unsigned short); /**< shell写函数 */
|
||||
signed short (*write)(char *, unsigned short); /**< shell写函数 */
|
||||
#if SHELL_USING_LOCK == 1
|
||||
int (*lock)(struct shell_def *); /**< shell 加锁 */
|
||||
int (*unlock)(struct shell_def *); /**< shell 解锁 */
|
||||
@ -461,3 +461,4 @@ void *shellCompanionGet(Shell *shell, int id);
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user