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
d7264418
Commit
d7264418
authored
11 years ago
by
Ludwig Knüpfer
Browse files
Options
Downloads
Patches
Plain Diff
native cc110x_ng support
parent
dc5e7d7e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
native/drivers/native-uart0.c
+11
-4
11 additions, 4 deletions
native/drivers/native-uart0.c
native/include/board_internal.h
+1
-1
1 addition, 1 deletion
native/include/board_internal.h
with
12 additions
and
5 deletions
native/drivers/native-uart0.c
+
11
−
4
View file @
d7264418
...
@@ -27,6 +27,10 @@ void _native_handle_uart0_input()
...
@@ -27,6 +27,10 @@ void _native_handle_uart0_input()
char
buf
[
42
];
char
buf
[
42
];
int
nread
;
int
nread
;
if
(
!
FD_ISSET
(
_native_uart_in
,
&
_native_rfds
))
{
DEBUG
(
"_native_handle_uart0_input - nothing to do
\n
"
);
return
;
}
DEBUG
(
"_native_handle_uart0_input
\n
"
);
DEBUG
(
"_native_handle_uart0_input
\n
"
);
_native_in_syscall
=
0
;
_native_in_syscall
=
0
;
_native_in_isr
=
1
;
_native_in_isr
=
1
;
...
@@ -44,15 +48,18 @@ void _native_handle_uart0_input()
...
@@ -44,15 +48,18 @@ void _native_handle_uart0_input()
cpu_switch_context_exit
();
cpu_switch_context_exit
();
}
}
int
_native_set_uart_fds
(
void
)
{
DEBUG
(
"_native_set_uart_fds"
);
FD_SET
(
_native_uart_in
,
&
_native_rfds
);
return
_native_uart_in
;
}
void
_native_init_uart0
()
void
_native_init_uart0
()
{
{
_native_uart_out
=
STDOUT_FILENO
;
_native_uart_out
=
STDOUT_FILENO
;
_native_uart_in
=
STDIN_FILENO
;
_native_uart_in
=
STDIN_FILENO
;
/* set fds for select in lpm */
FD_ZERO
(
&
_native_uart_rfds
);
FD_SET
(
_native_uart_in
,
&
_native_uart_rfds
);
puts
(
"RIOT native uart0 initialized."
);
puts
(
"RIOT native uart0 initialized."
);
}
}
...
...
This diff is collapsed.
Click to expand it.
native/include/board_internal.h
+
1
−
1
View file @
d7264418
#ifdef MODULE_UART0
#ifdef MODULE_UART0
#include
<sys/select.h>
#include
<sys/select.h>
extern
fd_set
_native_uart_rfds
;
void
_native_handle_uart0_input
(
void
);
void
_native_handle_uart0_input
(
void
);
void
_native_init_uart0
(
void
);
void
_native_init_uart0
(
void
);
int
_native_set_uart_fds
(
void
);
#endif
#endif
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