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
43ceadac
Commit
43ceadac
authored
Jul 20, 2020
by
Jim Mussared
Committed by
Damien George
Jul 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extmod/modbluetooth: Ignore unused self_in in ble_gatts_indicate.
parent
b7698841
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
extmod/modbluetooth.c
extmod/modbluetooth.c
+1
-0
No files found.
extmod/modbluetooth.c
View file @
43ceadac
...
...
@@ -673,6 +673,7 @@ STATIC mp_obj_t bluetooth_ble_gatts_notify(size_t n_args, const mp_obj_t *args)
STATIC
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN
(
bluetooth_ble_gatts_notify_obj
,
3
,
4
,
bluetooth_ble_gatts_notify
);
STATIC
mp_obj_t
bluetooth_ble_gatts_indicate
(
mp_obj_t
self_in
,
mp_obj_t
conn_handle_in
,
mp_obj_t
value_handle_in
)
{
(
void
)
self_in
;
mp_int_t
conn_handle
=
mp_obj_get_int
(
conn_handle_in
);
mp_int_t
value_handle
=
mp_obj_get_int
(
value_handle_in
);
...
...
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