Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
8678e3ed
Commit
8678e3ed
authored
8 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
stmhal: Convert to use builtin help function.
parent
9f04dfb5
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
stmhal/Makefile
+0
-1
0 additions, 1 deletion
stmhal/Makefile
stmhal/help.c
+2
-18
2 additions, 18 deletions
stmhal/help.c
stmhal/mpconfigport.h
+2
-1
2 additions, 1 deletion
stmhal/mpconfigport.h
with
4 additions
and
20 deletions
stmhal/Makefile
+
0
−
1
View file @
8678e3ed
...
...
@@ -112,7 +112,6 @@ SRC_LIB = $(addprefix lib/,\
netutils/netutils.c
\
timeutils/timeutils.c
\
utils/pyexec.c
\
utils/pyhelp.c
\
)
SRC_C
=
\
...
...
This diff is collapsed.
Click to expand it.
stmhal/help.c
+
2
−
18
View file @
8678e3ed
...
...
@@ -24,11 +24,9 @@
* THE SOFTWARE.
*/
#include
<stdio
.h
>
#include
"py/builtin
.h
"
#include
"lib/utils/pyhelp.h"
STATIC
const
char
*
help_text
=
const
char
*
stmhal_help_text
=
"Welcome to MicroPython!
\n
"
"
\n
"
"For online help please visit http://micropython.org/help/.
\n
"
...
...
@@ -70,17 +68,3 @@ STATIC const char *help_text =
"
\n
"
"For further help on a specific object, type help(obj)
\n
"
;
STATIC
mp_obj_t
pyb_help
(
uint
n_args
,
const
mp_obj_t
*
args
)
{
if
(
n_args
==
0
)
{
// print a general help message
printf
(
"%s"
,
help_text
);
}
else
{
// try to print something sensible about the given object
pyhelp_print_obj
(
args
[
0
]);
}
return
mp_const_none
;
}
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN
(
mp_builtin_help_obj
,
0
,
1
,
pyb_help
);
This diff is collapsed.
Click to expand it.
stmhal/mpconfigport.h
+
2
−
1
View file @
8678e3ed
...
...
@@ -76,6 +76,8 @@
#define MICROPY_PY_BUILTINS_FROZENSET (1)
#define MICROPY_PY_BUILTINS_EXECFILE (1)
#define MICROPY_PY_BUILTINS_COMPILE (1)
#define MICROPY_PY_BUILTINS_HELP (1)
#define MICROPY_PY_BUILTINS_HELP_TEXT stmhal_help_text
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)
#define MICROPY_PY_MICROPYTHON_MEM_INFO (1)
#define MICROPY_PY_ARRAY_SLICE_ASSIGN (1)
...
...
@@ -130,7 +132,6 @@
// extra built in names to add to the global namespace
#define MICROPY_PORT_BUILTINS \
{ MP_OBJ_NEW_QSTR(MP_QSTR_help), (mp_obj_t)&mp_builtin_help_obj }, \
{ MP_OBJ_NEW_QSTR(MP_QSTR_input), (mp_obj_t)&mp_builtin_input_obj }, \
{ MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj },
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment