summaryrefslogtreecommitdiff
path: root/shared-module
diff options
context:
space:
mode:
Diffstat (limited to 'shared-module')
-rw-r--r--shared-module/bleio/Service.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-module/bleio/Service.h b/shared-module/bleio/Service.h
index ff506d3f3..540749793 100644
--- a/shared-module/bleio/Service.h
+++ b/shared-module/bleio/Service.h
@@ -28,14 +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;
- bleio_device_obj_t *device;
+ // May be a LocalPeripheral, RemotePeripheral, etc.
+ mp_obj_t *device;
mp_obj_t char_list;
uint16_t start_handle;
uint16_t end_handle;