Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
6ec835df
Commit
6ec835df
authored
May 03, 2014
by
Damien George
Browse files
Don't print git hash as well as git tag in banner.
parent
1549f170
Changes
2
Hide whitespace changes
Inline
Side-by-side
stmhal/pyexec.c
View file @
6ec835df
...
...
@@ -155,7 +155,7 @@ int pyexec_friendly_repl(void) {
#endif
friendly_repl_reset:
stdout_tx_str
(
"Micro Python "
MICROPY_GIT_TAG
"
("
MICROPY_GIT_HASH
"
on "
MICROPY_BUILD_DATE
"
)
; "
MICROPY_HW_BOARD_NAME
" with STM32F405RG
\r\n
"
);
stdout_tx_str
(
"Micro Python "
MICROPY_GIT_TAG
" on "
MICROPY_BUILD_DATE
"; "
MICROPY_HW_BOARD_NAME
" with STM32F405RG
\r\n
"
);
stdout_tx_str
(
"Type
\"
help()
\"
for more information.
\r\n
"
);
// to test ctrl-C
...
...
unix/main.c
View file @
6ec835df
...
...
@@ -142,7 +142,7 @@ STATIC char *prompt(char *p) {
}
STATIC
void
do_repl
(
void
)
{
printf
(
"Micro Python "
MICROPY_GIT_TAG
"
("
MICROPY_GIT_HASH
"
on "
MICROPY_BUILD_DATE
"
)
; UNIX version
\n
"
);
printf
(
"Micro Python "
MICROPY_GIT_TAG
" on "
MICROPY_BUILD_DATE
"; UNIX version
\n
"
);
for
(;;)
{
char
*
line
=
prompt
(
">>> "
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment