Merge pull request #1242 from RT-Thread/feature_shell
[Kernel] include finsh.h file in rtthread.h when RT_USING_FINSH enable
This commit is contained in:
commit
f0ff224954
|
@ -1,11 +1,20 @@
|
||||||
/*
|
/*
|
||||||
* File : finsh.h
|
* File : finsh.h
|
||||||
* This file is part of RT-Thread RTOS
|
* COPYRIGHT (C) 2006 - 2018, RT-Thread Development Team
|
||||||
* COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
|
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* found in the file LICENSE in this distribution or at
|
* it under the terms of the GNU General Public License as published by
|
||||||
* http://www.rt-thread.org/license/LICENSE
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*
|
*
|
||||||
* Change Logs:
|
* Change Logs:
|
||||||
* Date Author Notes
|
* Date Author Notes
|
||||||
|
@ -15,11 +24,7 @@
|
||||||
#define __FINSH_H__
|
#define __FINSH_H__
|
||||||
|
|
||||||
#include <rtthread.h>
|
#include <rtthread.h>
|
||||||
|
#include "finsh_api.h"
|
||||||
#if defined(_MSC_VER)
|
|
||||||
#pragma section("FSymTab$f",read)
|
|
||||||
#pragma section("VSymTab",read)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* -- the beginning of option -- */
|
/* -- the beginning of option -- */
|
||||||
#define FINSH_NAME_MAX 16 /* max length of identifier */
|
#define FINSH_NAME_MAX 16 /* max length of identifier */
|
||||||
|
@ -87,30 +92,14 @@
|
||||||
#define FINSH_ERROR_NULL_NODE 14 /**< Null node */
|
#define FINSH_ERROR_NULL_NODE 14 /**< Null node */
|
||||||
/*@}*/
|
/*@}*/
|
||||||
|
|
||||||
typedef long (*syscall_func)();
|
|
||||||
|
|
||||||
/* system call table */
|
|
||||||
struct finsh_syscall
|
|
||||||
{
|
|
||||||
const char* name; /* the name of system call */
|
|
||||||
#if defined(FINSH_USING_DESCRIPTION) && defined(FINSH_USING_SYMTAB)
|
|
||||||
const char* desc; /* description of system call */
|
|
||||||
#endif
|
|
||||||
syscall_func func; /* the function address of system call */
|
|
||||||
};
|
|
||||||
|
|
||||||
/* system call item */
|
/* system call item */
|
||||||
struct finsh_syscall_item
|
struct finsh_syscall_item
|
||||||
{
|
{
|
||||||
struct finsh_syscall_item* next; /* next item */
|
struct finsh_syscall_item* next; /* next item */
|
||||||
struct finsh_syscall syscall; /* syscall */
|
struct finsh_syscall syscall; /* syscall */
|
||||||
};
|
};
|
||||||
extern struct finsh_syscall *_syscall_table_begin, *_syscall_table_end;
|
|
||||||
extern struct finsh_syscall_item *global_syscall_list;
|
extern struct finsh_syscall_item *global_syscall_list;
|
||||||
|
|
||||||
/* find out system call, which should be implemented in user program */
|
|
||||||
struct finsh_syscall* finsh_syscall_lookup(const char* name);
|
|
||||||
|
|
||||||
/* system variable table */
|
/* system variable table */
|
||||||
struct finsh_sysvar
|
struct finsh_sysvar
|
||||||
{
|
{
|
||||||
|
@ -144,189 +133,6 @@ extern struct finsh_sysvar_item* global_sysvar_list;
|
||||||
/* find out system variable, which should be implemented in user program */
|
/* find out system variable, which should be implemented in user program */
|
||||||
struct finsh_sysvar* finsh_sysvar_lookup(const char* name);
|
struct finsh_sysvar* finsh_sysvar_lookup(const char* name);
|
||||||
|
|
||||||
#ifdef FINSH_USING_SYMTAB
|
|
||||||
|
|
||||||
#ifdef __TI_COMPILER_VERSION__
|
|
||||||
#define __TI_FINSH_EXPORT_FUNCTION(f) PRAGMA(DATA_SECTION(f,"FSymTab"))
|
|
||||||
#define __TI_FINSH_EXPORT_VAR(v) PRAGMA(DATA_SECTION(v,"VSymTab"))
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef FINSH_USING_DESCRIPTION
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
|
||||||
const char __fsym_##cmd##_name[] = #cmd; \
|
|
||||||
const char __fsym_##cmd##_desc[] = #desc; \
|
|
||||||
__declspec(allocate("FSymTab$f")) \
|
|
||||||
const struct finsh_syscall __fsym_##cmd = \
|
|
||||||
{ \
|
|
||||||
__fsym_##cmd##_name, \
|
|
||||||
__fsym_##cmd##_desc, \
|
|
||||||
(syscall_func)&name \
|
|
||||||
};
|
|
||||||
#pragma comment(linker, "/merge:FSymTab=mytext")
|
|
||||||
|
|
||||||
#define FINSH_VAR_EXPORT(name, type, desc) \
|
|
||||||
const char __vsym_##name##_name[] = #name; \
|
|
||||||
const char __vsym_##name##_desc[] = #desc; \
|
|
||||||
__declspec(allocate("VSymTab")) \
|
|
||||||
const struct finsh_sysvar __vsym_##name = \
|
|
||||||
{ \
|
|
||||||
__vsym_##name##_name, \
|
|
||||||
__vsym_##name##_desc, \
|
|
||||||
type, \
|
|
||||||
(void*)&name \
|
|
||||||
};
|
|
||||||
|
|
||||||
#elif defined(__TI_COMPILER_VERSION__)
|
|
||||||
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
|
||||||
__TI_FINSH_EXPORT_FUNCTION(__fsym_##cmd); \
|
|
||||||
const char __fsym_##cmd##_name[] = #cmd; \
|
|
||||||
const char __fsym_##cmd##_desc[] = #desc; \
|
|
||||||
const struct finsh_syscall __fsym_##cmd = \
|
|
||||||
{ \
|
|
||||||
__fsym_##cmd##_name, \
|
|
||||||
__fsym_##cmd##_desc, \
|
|
||||||
(syscall_func)&name \
|
|
||||||
};
|
|
||||||
|
|
||||||
#define FINSH_VAR_EXPORT(name, type, desc) \
|
|
||||||
__TI_FINSH_EXPORT_VAR(__vsym_##name); \
|
|
||||||
const char __vsym_##name##_name[] = #name; \
|
|
||||||
const char __vsym_##name##_desc[] = #desc; \
|
|
||||||
const struct finsh_sysvar __vsym_##name = \
|
|
||||||
{ \
|
|
||||||
__vsym_##name##_name, \
|
|
||||||
__vsym_##name##_desc, \
|
|
||||||
type, \
|
|
||||||
(void*)&name \
|
|
||||||
};
|
|
||||||
|
|
||||||
#else
|
|
||||||
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
|
||||||
const char __fsym_##cmd##_name[] SECTION(".rodata.name") = #cmd; \
|
|
||||||
const char __fsym_##cmd##_desc[] SECTION(".rodata.name") = #desc; \
|
|
||||||
const struct finsh_syscall __fsym_##cmd SECTION("FSymTab")= \
|
|
||||||
{ \
|
|
||||||
__fsym_##cmd##_name, \
|
|
||||||
__fsym_##cmd##_desc, \
|
|
||||||
(syscall_func)&name \
|
|
||||||
};
|
|
||||||
|
|
||||||
#define FINSH_VAR_EXPORT(name, type, desc) \
|
|
||||||
const char __vsym_##name##_name[] SECTION(".rodata.name") = #name; \
|
|
||||||
const char __vsym_##name##_desc[] SECTION(".rodata.name") = #desc; \
|
|
||||||
const struct finsh_sysvar __vsym_##name SECTION("VSymTab")= \
|
|
||||||
{ \
|
|
||||||
__vsym_##name##_name, \
|
|
||||||
__vsym_##name##_desc, \
|
|
||||||
type, \
|
|
||||||
(void*)&name \
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
|
||||||
const char __fsym_##cmd##_name[] = #cmd; \
|
|
||||||
__declspec(allocate("FSymTab$f")) \
|
|
||||||
const struct finsh_syscall __fsym_##cmd = \
|
|
||||||
{ \
|
|
||||||
__fsym_##cmd##_name, \
|
|
||||||
(syscall_func)&name \
|
|
||||||
};
|
|
||||||
#pragma comment(linker, "/merge:FSymTab=mytext")
|
|
||||||
|
|
||||||
#define FINSH_VAR_EXPORT(name, type, desc) \
|
|
||||||
const char __vsym_##name##_name[] = #name; \
|
|
||||||
__declspec(allocate("VSymTab")) const struct finsh_sysvar __vsym_##name = \
|
|
||||||
{ \
|
|
||||||
__vsym_##name##_name, \
|
|
||||||
type, \
|
|
||||||
(void*)&name \
|
|
||||||
};
|
|
||||||
|
|
||||||
#elif defined(__TI_COMPILER_VERSION__)
|
|
||||||
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
|
||||||
__TI_FINSH_EXPORT_FUNCTION(__fsym_##cmd); \
|
|
||||||
const char __fsym_##cmd##_name[] = #cmd; \
|
|
||||||
const struct finsh_syscall __fsym_##cmd = \
|
|
||||||
{ \
|
|
||||||
__fsym_##cmd##_name, \
|
|
||||||
(syscall_func)&name \
|
|
||||||
};
|
|
||||||
|
|
||||||
#define FINSH_VAR_EXPORT(name, type, desc) \
|
|
||||||
__TI_FINSH_EXPORT_VAR(__vsym_##name); \
|
|
||||||
const char __vsym_##name##_name[] = #name; \
|
|
||||||
const struct finsh_sysvar __vsym_##name = \
|
|
||||||
{ \
|
|
||||||
__vsym_##name##_name, \
|
|
||||||
type, \
|
|
||||||
(void*)&name \
|
|
||||||
};
|
|
||||||
|
|
||||||
#else
|
|
||||||
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
|
||||||
const char __fsym_##cmd##_name[] = #cmd; \
|
|
||||||
const struct finsh_syscall __fsym_##cmd SECTION("FSymTab")= \
|
|
||||||
{ \
|
|
||||||
__fsym_##cmd##_name, \
|
|
||||||
(syscall_func)&name \
|
|
||||||
};
|
|
||||||
|
|
||||||
#define FINSH_VAR_EXPORT(name, type, desc) \
|
|
||||||
const char __vsym_##name##_name[] = #name; \
|
|
||||||
const struct finsh_sysvar __vsym_##name SECTION("VSymTab")= \
|
|
||||||
{ \
|
|
||||||
__vsym_##name##_name, \
|
|
||||||
type, \
|
|
||||||
(void*)&name \
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
||||||
#endif /* end of FINSH_USING_DESCRIPTION */
|
|
||||||
#endif /* end of FINSH_USING_SYMTAB */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @ingroup finsh
|
|
||||||
*
|
|
||||||
* This macro exports a system function to finsh shell.
|
|
||||||
*
|
|
||||||
* @param name the name of function.
|
|
||||||
* @param desc the description of function, which will show in help.
|
|
||||||
*/
|
|
||||||
#define FINSH_FUNCTION_EXPORT(name, desc) \
|
|
||||||
FINSH_FUNCTION_EXPORT_CMD(name, name, desc)
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @ingroup finsh
|
|
||||||
*
|
|
||||||
* This macro exports a system function with an alias name to finsh shell.
|
|
||||||
*
|
|
||||||
* @param name the name of function.
|
|
||||||
* @param alias the alias name of function.
|
|
||||||
* @param desc the description of function, which will show in help.
|
|
||||||
*/
|
|
||||||
#define FINSH_FUNCTION_EXPORT_ALIAS(name, alias, desc) \
|
|
||||||
FINSH_FUNCTION_EXPORT_CMD(name, alias, desc)
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @ingroup finsh
|
|
||||||
*
|
|
||||||
* This macro exports a command to module shell.
|
|
||||||
*
|
|
||||||
* @param command the name of command.
|
|
||||||
* @param desc the description of command, which will show in help.
|
|
||||||
*/
|
|
||||||
#ifdef FINSH_USING_MSH
|
|
||||||
#define MSH_CMD_EXPORT(command, desc) \
|
|
||||||
FINSH_FUNCTION_EXPORT_CMD(command, __cmd_##command, desc)
|
|
||||||
#define MSH_CMD_EXPORT_ALIAS(command, alias, desc) \
|
|
||||||
FINSH_FUNCTION_EXPORT_ALIAS(command, __cmd_##alias, desc)
|
|
||||||
#else
|
|
||||||
#define MSH_CMD_EXPORT(command, desc)
|
|
||||||
#define MSH_CMD_EXPORT_ALIAS(command, alias, desc)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct finsh_token
|
struct finsh_token
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,231 @@
|
||||||
|
/*
|
||||||
|
* File : finsh_api.h
|
||||||
|
* COPYRIGHT (C) 2006 - 2018, RT-Thread Development Team
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*
|
||||||
|
* Change Logs:
|
||||||
|
* Date Author Notes
|
||||||
|
* 2010-03-22 Bernard first version
|
||||||
|
*/
|
||||||
|
#ifndef FINSH_API_H__
|
||||||
|
#define FINSH_API_H__
|
||||||
|
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#pragma section("FSymTab$f",read)
|
||||||
|
#pragma section("VSymTab",read)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef long (*syscall_func)(void);
|
||||||
|
|
||||||
|
/* system call table */
|
||||||
|
struct finsh_syscall
|
||||||
|
{
|
||||||
|
const char* name; /* the name of system call */
|
||||||
|
#if defined(FINSH_USING_DESCRIPTION) && defined(FINSH_USING_SYMTAB)
|
||||||
|
const char* desc; /* description of system call */
|
||||||
|
#endif
|
||||||
|
syscall_func func; /* the function address of system call */
|
||||||
|
};
|
||||||
|
extern struct finsh_syscall *_syscall_table_begin, *_syscall_table_end;
|
||||||
|
|
||||||
|
/* find out system call, which should be implemented in user program */
|
||||||
|
struct finsh_syscall* finsh_syscall_lookup(const char* name);
|
||||||
|
|
||||||
|
#ifdef FINSH_USING_SYMTAB
|
||||||
|
|
||||||
|
#ifdef __TI_COMPILER_VERSION__
|
||||||
|
#define __TI_FINSH_EXPORT_FUNCTION(f) PRAGMA(DATA_SECTION(f,"FSymTab"))
|
||||||
|
#define __TI_FINSH_EXPORT_VAR(v) PRAGMA(DATA_SECTION(v,"VSymTab"))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef FINSH_USING_DESCRIPTION
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
||||||
|
const char __fsym_##cmd##_name[] = #cmd; \
|
||||||
|
const char __fsym_##cmd##_desc[] = #desc; \
|
||||||
|
__declspec(allocate("FSymTab$f")) \
|
||||||
|
const struct finsh_syscall __fsym_##cmd = \
|
||||||
|
{ \
|
||||||
|
__fsym_##cmd##_name, \
|
||||||
|
__fsym_##cmd##_desc, \
|
||||||
|
(syscall_func)&name \
|
||||||
|
};
|
||||||
|
#pragma comment(linker, "/merge:FSymTab=mytext")
|
||||||
|
|
||||||
|
#define FINSH_VAR_EXPORT(name, type, desc) \
|
||||||
|
const char __vsym_##name##_name[] = #name; \
|
||||||
|
const char __vsym_##name##_desc[] = #desc; \
|
||||||
|
__declspec(allocate("VSymTab")) \
|
||||||
|
const struct finsh_sysvar __vsym_##name = \
|
||||||
|
{ \
|
||||||
|
__vsym_##name##_name, \
|
||||||
|
__vsym_##name##_desc, \
|
||||||
|
type, \
|
||||||
|
(void*)&name \
|
||||||
|
};
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
||||||
|
__TI_FINSH_EXPORT_FUNCTION(__fsym_##cmd); \
|
||||||
|
const char __fsym_##cmd##_name[] = #cmd; \
|
||||||
|
const char __fsym_##cmd##_desc[] = #desc; \
|
||||||
|
const struct finsh_syscall __fsym_##cmd = \
|
||||||
|
{ \
|
||||||
|
__fsym_##cmd##_name, \
|
||||||
|
__fsym_##cmd##_desc, \
|
||||||
|
(syscall_func)&name \
|
||||||
|
};
|
||||||
|
|
||||||
|
#define FINSH_VAR_EXPORT(name, type, desc) \
|
||||||
|
__TI_FINSH_EXPORT_VAR(__vsym_##name); \
|
||||||
|
const char __vsym_##name##_name[] = #name; \
|
||||||
|
const char __vsym_##name##_desc[] = #desc; \
|
||||||
|
const struct finsh_sysvar __vsym_##name = \
|
||||||
|
{ \
|
||||||
|
__vsym_##name##_name, \
|
||||||
|
__vsym_##name##_desc, \
|
||||||
|
type, \
|
||||||
|
(void*)&name \
|
||||||
|
};
|
||||||
|
|
||||||
|
#else
|
||||||
|
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
||||||
|
const char __fsym_##cmd##_name[] SECTION(".rodata.name") = #cmd; \
|
||||||
|
const char __fsym_##cmd##_desc[] SECTION(".rodata.name") = #desc; \
|
||||||
|
const struct finsh_syscall __fsym_##cmd SECTION("FSymTab")= \
|
||||||
|
{ \
|
||||||
|
__fsym_##cmd##_name, \
|
||||||
|
__fsym_##cmd##_desc, \
|
||||||
|
(syscall_func)&name \
|
||||||
|
};
|
||||||
|
|
||||||
|
#define FINSH_VAR_EXPORT(name, type, desc) \
|
||||||
|
const char __vsym_##name##_name[] SECTION(".rodata.name") = #name; \
|
||||||
|
const char __vsym_##name##_desc[] SECTION(".rodata.name") = #desc; \
|
||||||
|
const struct finsh_sysvar __vsym_##name SECTION("VSymTab")= \
|
||||||
|
{ \
|
||||||
|
__vsym_##name##_name, \
|
||||||
|
__vsym_##name##_desc, \
|
||||||
|
type, \
|
||||||
|
(void*)&name \
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
||||||
|
const char __fsym_##cmd##_name[] = #cmd; \
|
||||||
|
__declspec(allocate("FSymTab$f")) \
|
||||||
|
const struct finsh_syscall __fsym_##cmd = \
|
||||||
|
{ \
|
||||||
|
__fsym_##cmd##_name, \
|
||||||
|
(syscall_func)&name \
|
||||||
|
};
|
||||||
|
#pragma comment(linker, "/merge:FSymTab=mytext")
|
||||||
|
|
||||||
|
#define FINSH_VAR_EXPORT(name, type, desc) \
|
||||||
|
const char __vsym_##name##_name[] = #name; \
|
||||||
|
__declspec(allocate("VSymTab")) const struct finsh_sysvar __vsym_##name = \
|
||||||
|
{ \
|
||||||
|
__vsym_##name##_name, \
|
||||||
|
type, \
|
||||||
|
(void*)&name \
|
||||||
|
};
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
||||||
|
__TI_FINSH_EXPORT_FUNCTION(__fsym_##cmd); \
|
||||||
|
const char __fsym_##cmd##_name[] = #cmd; \
|
||||||
|
const struct finsh_syscall __fsym_##cmd = \
|
||||||
|
{ \
|
||||||
|
__fsym_##cmd##_name, \
|
||||||
|
(syscall_func)&name \
|
||||||
|
};
|
||||||
|
|
||||||
|
#define FINSH_VAR_EXPORT(name, type, desc) \
|
||||||
|
__TI_FINSH_EXPORT_VAR(__vsym_##name); \
|
||||||
|
const char __vsym_##name##_name[] = #name; \
|
||||||
|
const struct finsh_sysvar __vsym_##name = \
|
||||||
|
{ \
|
||||||
|
__vsym_##name##_name, \
|
||||||
|
type, \
|
||||||
|
(void*)&name \
|
||||||
|
};
|
||||||
|
|
||||||
|
#else
|
||||||
|
#define FINSH_FUNCTION_EXPORT_CMD(name, cmd, desc) \
|
||||||
|
const char __fsym_##cmd##_name[] = #cmd; \
|
||||||
|
const struct finsh_syscall __fsym_##cmd SECTION("FSymTab")= \
|
||||||
|
{ \
|
||||||
|
__fsym_##cmd##_name, \
|
||||||
|
(syscall_func)&name \
|
||||||
|
};
|
||||||
|
|
||||||
|
#define FINSH_VAR_EXPORT(name, type, desc) \
|
||||||
|
const char __vsym_##name##_name[] = #name; \
|
||||||
|
const struct finsh_sysvar __vsym_##name SECTION("VSymTab")= \
|
||||||
|
{ \
|
||||||
|
__vsym_##name##_name, \
|
||||||
|
type, \
|
||||||
|
(void*)&name \
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
#endif /* end of FINSH_USING_DESCRIPTION */
|
||||||
|
#endif /* end of FINSH_USING_SYMTAB */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup finsh
|
||||||
|
*
|
||||||
|
* This macro exports a system function to finsh shell.
|
||||||
|
*
|
||||||
|
* @param name the name of function.
|
||||||
|
* @param desc the description of function, which will show in help.
|
||||||
|
*/
|
||||||
|
#define FINSH_FUNCTION_EXPORT(name, desc) \
|
||||||
|
FINSH_FUNCTION_EXPORT_CMD(name, name, desc)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup finsh
|
||||||
|
*
|
||||||
|
* This macro exports a system function with an alias name to finsh shell.
|
||||||
|
*
|
||||||
|
* @param name the name of function.
|
||||||
|
* @param alias the alias name of function.
|
||||||
|
* @param desc the description of function, which will show in help.
|
||||||
|
*/
|
||||||
|
#define FINSH_FUNCTION_EXPORT_ALIAS(name, alias, desc) \
|
||||||
|
FINSH_FUNCTION_EXPORT_CMD(name, alias, desc)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup finsh
|
||||||
|
*
|
||||||
|
* This macro exports a command to module shell.
|
||||||
|
*
|
||||||
|
* @param command the name of command.
|
||||||
|
* @param desc the description of command, which will show in help.
|
||||||
|
*/
|
||||||
|
#ifdef FINSH_USING_MSH
|
||||||
|
#define MSH_CMD_EXPORT(command, desc) \
|
||||||
|
FINSH_FUNCTION_EXPORT_CMD(command, __cmd_##command, desc)
|
||||||
|
#define MSH_CMD_EXPORT_ALIAS(command, alias, desc) \
|
||||||
|
FINSH_FUNCTION_EXPORT_ALIAS(command, __cmd_##alias, desc)
|
||||||
|
#else
|
||||||
|
#define MSH_CMD_EXPORT(command, desc)
|
||||||
|
#define MSH_CMD_EXPORT_ALIAS(command, alias, desc)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
|
@ -563,6 +563,10 @@ void rt_assert_set_hook(void (*hook)(const char *ex, const char *func, rt_size_t
|
||||||
void rt_assert_handler(const char *ex, const char *func, rt_size_t line);
|
void rt_assert_handler(const char *ex, const char *func, rt_size_t line);
|
||||||
#endif /* RT_DEBUG */
|
#endif /* RT_DEBUG */
|
||||||
|
|
||||||
|
#ifdef RT_USING_FINSH
|
||||||
|
#include <finsh_api.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
/**@}*/
|
/**@}*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
|
@ -141,7 +141,7 @@ def PrepareBuilding(env, root_directory, has_libcpu=False, remove_components = [
|
||||||
env['LIBDIRPREFIX'] = '--userlibpath '
|
env['LIBDIRPREFIX'] = '--userlibpath '
|
||||||
|
|
||||||
if rtconfig.PLATFORM == 'gcc':
|
if rtconfig.PLATFORM == 'gcc':
|
||||||
if env['LINKFLAGS'].find('nano.specs'):
|
if str(env['LINKFLAGS']).find('nano.specs'):
|
||||||
env.AppendUnique(CPPDEFINES = ['_REENT_SMALL'])
|
env.AppendUnique(CPPDEFINES = ['_REENT_SMALL'])
|
||||||
|
|
||||||
# patch for win32 spawn
|
# patch for win32 spawn
|
||||||
|
|
Loading…
Reference in New Issue