Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
micropython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
micropython
Commits
ffded488
Commit
ffded488
authored
Feb 01, 2021
by
Damien George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zephyr/machine_uart: Fix arg of machine_uart_ioctl to make it uintptr_t.
Signed-off-by:
Damien George
<
damien@micropython.org
>
parent
35a6f623
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
ports/zephyr/machine_uart.c
ports/zephyr/machine_uart.c
+1
-1
No files found.
ports/zephyr/machine_uart.c
View file @
ffded488
...
...
@@ -131,7 +131,7 @@ STATIC mp_uint_t machine_uart_write(mp_obj_t self_in, const void *buf_in, mp_uin
return
size
;
}
STATIC
mp_uint_t
machine_uart_ioctl
(
mp_obj_t
self_in
,
mp_uint_t
request
,
mp_uint
_t
arg
,
int
*
errcode
)
{
STATIC
mp_uint_t
machine_uart_ioctl
(
mp_obj_t
self_in
,
mp_uint_t
request
,
uintptr
_t
arg
,
int
*
errcode
)
{
mp_uint_t
ret
;
if
(
request
==
MP_STREAM_POLL
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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