summaryrefslogtreecommitdiff
path: root/shared-module/bleio/Service.h
diff options
context:
space:
mode:
authorarturo182 <arturo182@tlen.pl>2018-07-22 16:06:19 +0200
committerarturo182 <arturo182@tlen.pl>2018-10-21 15:54:13 +0200
commit17f13ecc2cf10975bf5ff0631ce4326b9ffbbcf5 (patch)
tree32c1de123b15baa5e6bc77cc0dd516e5c5cff331 /shared-module/bleio/Service.h
parent77eeecbfd92ab24504f0081630a3c3633c5be18b (diff)
nrf: Cleanup of the ble driver
Moved the functions to classes that they belong to.
Diffstat (limited to 'shared-module/bleio/Service.h')
-rw-r--r--shared-module/bleio/Service.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/shared-module/bleio/Service.h b/shared-module/bleio/Service.h
index 1e3f09119..ff506d3f3 100644
--- a/shared-module/bleio/Service.h
+++ b/shared-module/bleio/Service.h
@@ -28,13 +28,14 @@
#define MICROPY_INCLUDED_SHARED_MODULE_BLEIO_SERVICE_H
#include "common-hal/bleio/UUID.h"
+#include "shared-module/bleio/Device.h"
typedef struct {
mp_obj_base_t base;
uint16_t handle;
bool is_secondary;
bleio_uuid_obj_t *uuid;
- mp_obj_t device;
+ bleio_device_obj_t *device;
mp_obj_t char_list;
uint16_t start_handle;
uint16_t end_handle;