Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
ca06fac4
Commit
ca06fac4
authored
Mar 26, 2017
by
Damien George
Browse files
stmhal: Update to use size_t for tuple/list accessors.
parent
1d7e3113
Changes
2
Hide whitespace changes
Inline
Side-by-side
stmhal/can.c
View file @
ca06fac4
...
...
@@ -631,8 +631,8 @@ STATIC mp_obj_t pyb_can_setfilter(mp_uint_t n_args, const mp_obj_t *pos_args, mp
mp_arg_val_t
args
[
MP_ARRAY_SIZE
(
allowed_args
)];
mp_arg_parse_all
(
n_args
-
1
,
pos_args
+
1
,
kw_args
,
MP_ARRAY_SIZE
(
allowed_args
),
allowed_args
,
args
);
mp_uint
_t
len
;
mp_uint
_t
rtr_len
;
size
_t
len
;
size
_t
rtr_len
;
mp_uint_t
rtr_masks
[
4
]
=
{
0
,
0
,
0
,
0
};
mp_obj_t
*
rtr_flags
;
mp_obj_t
*
params
;
...
...
stmhal/modutime.c
View file @
ca06fac4
...
...
@@ -100,7 +100,7 @@ MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(time_localtime_obj, 0, 1, time_localtime);
/// the number of seconds since Jan 1, 2000.
STATIC
mp_obj_t
time_mktime
(
mp_obj_t
tuple
)
{
mp_uint
_t
len
;
size
_t
len
;
mp_obj_t
*
elem
;
mp_obj_get_array
(
tuple
,
&
len
,
&
elem
);
...
...
Write
Preview
Supports
Markdown
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