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
5ae95865
Commit
5ae95865
authored
Nov 01, 2017
by
Damien George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
teensy: Get port compiling without any warnings.
parent
80e3f07e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
ports/teensy/teensy_hal.c
ports/teensy/teensy_hal.c
+1
-0
ports/teensy/uart.c
ports/teensy/uart.c
+2
-0
No files found.
ports/teensy/teensy_hal.c
View file @
5ae95865
...
...
@@ -49,6 +49,7 @@ void mp_hal_stdout_tx_strn(const char *str, size_t len) {
void
mp_hal_stdout_tx_strn_cooked
(
const
char
*
str
,
size_t
len
)
{
// send stdout to UART and USB CDC VCP
if
(
MP_STATE_PORT
(
pyb_stdio_uart
)
!=
NULL
)
{
void
uart_tx_strn_cooked
(
pyb_uart_obj_t
*
uart_obj
,
const
char
*
str
,
uint
len
);
uart_tx_strn_cooked
(
MP_STATE_PORT
(
pyb_stdio_uart
),
str
,
len
);
}
if
(
usb_vcp_is_enabled
())
{
...
...
ports/teensy/uart.c
View file @
5ae95865
...
...
@@ -426,11 +426,13 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_KW(pyb_uart_send_obj, 1, pyb_uart_send);
///
/// Return value: if `recv` is an integer then a new buffer of the bytes received,
/// otherwise the same buffer that was passed in to `recv`.
#if 0
STATIC const mp_arg_t pyb_uart_recv_args[] = {
{ MP_QSTR_recv, MP_ARG_REQUIRED | MP_ARG_OBJ, {.u_obj = MP_OBJ_NULL} },
{ MP_QSTR_timeout, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 5000} },
};
#define PYB_UART_RECV_NUM_ARGS MP_ARRAY_SIZE(pyb_uart_recv_args)
#endif
STATIC
mp_obj_t
pyb_uart_recv
(
uint
n_args
,
const
mp_obj_t
*
args
,
mp_map_t
*
kw_args
)
{
// TODO assumes transmission size is 8-bits wide
...
...
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