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
GitLab 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
1818da2e
Commit
1818da2e
authored
Nov 22, 2015
by
Paul Sokolovsky
Browse files
Options
Downloads
Patches
Plain Diff
lib/utils/printf: Fix issue with putchar define for some ports.
parent
8ee43e24
Loading
Loading
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/utils/printf.c
+1
-1
1 addition, 1 deletion
lib/utils/printf.c
with
1 addition
and
1 deletion
lib/utils/printf.c
+
1
−
1
View file @
1818da2e
...
@@ -35,6 +35,7 @@
...
@@ -35,6 +35,7 @@
#include
"py/formatfloat.h"
#include
"py/formatfloat.h"
#endif
#endif
#undef putchar // Some stdlibs have a #define for putchar
int
printf
(
const
char
*
fmt
,
...);
int
printf
(
const
char
*
fmt
,
...);
int
vprintf
(
const
char
*
fmt
,
va_list
ap
);
int
vprintf
(
const
char
*
fmt
,
va_list
ap
);
int
putchar
(
int
c
);
int
putchar
(
int
c
);
...
@@ -72,7 +73,6 @@ int DEBUG_printf(const char *fmt, ...) {
...
@@ -72,7 +73,6 @@ int DEBUG_printf(const char *fmt, ...) {
#endif
#endif
// need this because gcc optimises printf("%c", c) -> putchar(c), and printf("a") -> putchar('a')
// need this because gcc optimises printf("%c", c) -> putchar(c), and printf("a") -> putchar('a')
#undef putchar // Some stdlibs have a #define for putchar
int
putchar
(
int
c
)
{
int
putchar
(
int
c
)
{
char
chr
=
c
;
char
chr
=
c
;
mp_hal_stdout_tx_strn_cooked
(
&
chr
,
1
);
mp_hal_stdout_tx_strn_cooked
(
&
chr
,
1
);
...
...
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