summaryrefslogtreecommitdiff
path: root/shared-bindings/_bleio/Service.h
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2021-03-18 23:14:43 -0400
committerDan Halbert <halbert@halwitz.org>2021-03-18 23:14:43 -0400
commitb2d913412f79c09ddac6e123f0e347117a7580c5 (patch)
tree48eb8dbe674559a7618f8c63e4dacbd0ed2ebbeb /shared-bindings/_bleio/Service.h
parent08c5dbb0033c2f3838d7d52f98d3844a56253f81 (diff)
parentd0125617fd9b2652faa1f3c9a88277304fcc66c4 (diff)
merge from upstream
Diffstat (limited to 'shared-bindings/_bleio/Service.h')
-rw-r--r--shared-bindings/_bleio/Service.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/_bleio/Service.h b/shared-bindings/_bleio/Service.h
index 44d11f60d..b2a35793f 100644
--- a/shared-bindings/_bleio/Service.h
+++ b/shared-bindings/_bleio/Service.h
@@ -37,9 +37,9 @@
extern const mp_obj_type_t bleio_service_type;
// Private version that doesn't allocate on the heap
-extern uint32_t _common_hal_bleio_service_construct(bleio_service_obj_t *self, bleio_uuid_obj_t *uuid, bool is_secondary, mp_obj_list_t * characteristic_list);
+extern uint32_t _common_hal_bleio_service_construct(bleio_service_obj_t *self, bleio_uuid_obj_t *uuid, bool is_secondary, mp_obj_list_t *characteristic_list);
extern void common_hal_bleio_service_construct(bleio_service_obj_t *self, bleio_uuid_obj_t *uuid, bool is_secondary);
-extern void common_hal_bleio_service_from_remote_service(bleio_service_obj_t *self, bleio_connection_obj_t* connection, bleio_uuid_obj_t *uuid, bool is_secondary);
+extern void common_hal_bleio_service_from_remote_service(bleio_service_obj_t *self, bleio_connection_obj_t *connection, bleio_uuid_obj_t *uuid, bool is_secondary);
extern bleio_uuid_obj_t *common_hal_bleio_service_get_uuid(bleio_service_obj_t *self);
extern mp_obj_tuple_t *common_hal_bleio_service_get_characteristics(bleio_service_obj_t *self);
extern bool common_hal_bleio_service_get_is_remote(bleio_service_obj_t *self);