Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
30864da4
Commit
30864da4
authored
11 years ago
by
Martine Lenders
Browse files
Options
Downloads
Plain Diff
Merge pull request #23 from LudwigOrtmann/issue_147
implement uart0_puts properly
parents
eeb8c60e
141bec64
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
native/drivers/native-uart0.c
+22
-1
22 additions, 1 deletion
native/drivers/native-uart0.c
with
22 additions
and
1 deletion
native/drivers/native-uart0.c
+
22
−
1
View file @
30864da4
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
#include
<err.h>
#include
<err.h>
#include
<stdio.h>
#include
<stdio.h>
#include
<unistd.h>
#include
<unistd.h>
#include
<stdlib.h>
#include
<sys/select.h>
#include
<sys/select.h>
...
@@ -19,7 +20,27 @@ fd_set _native_uart_rfds;
...
@@ -19,7 +20,27 @@ fd_set _native_uart_rfds;
inline
int
uart0_puts
(
char
*
astring
,
int
length
)
inline
int
uart0_puts
(
char
*
astring
,
int
length
)
{
{
return
puts
(
astring
);
int
nwritten
,
offset
;
nwritten
=
0
;
offset
=
0
;
_native_in_syscall
=
1
;
while
((
length
>
0
)
&&
(
nwritten
=
write
(
_native_uart_out
,
astring
+
offset
,
length
-
offset
))
>
0
)
{
offset
+=
nwritten
;
}
if
(
nwritten
==
-
1
)
{
err
(
EXIT_FAILURE
,
"uart0_puts: write"
);
}
else
if
((
length
>
0
)
&&
(
nwritten
==
0
))
{
/* XXX: handle properly */
errx
(
EXIT_FAILURE
,
"uart0_puts: Could not write to stdout. I don't know what to do now."
);
}
_native_in_syscall
=
0
;
return
length
;
}
}
void
_native_handle_uart0_input
()
void
_native_handle_uart0_input
()
...
...
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