diff options
| author | Dan Halbert <halbert@halwitz.org> | 2018-11-15 17:00:12 -0500 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2018-11-20 09:36:45 -0500 |
| commit | 31cc71f7fb0ddfc152c0927d60e9e573340ebf1f (patch) | |
| tree | ffe940e7ab670cb2a64baafd11d07e030be1eb29 /shared-bindings/bleio/UUID.h | |
| parent | 0ea31ec15dc212b5238f2ca6009ac206abe9e034 (diff) | |
WIP: bleio revisions
Diffstat (limited to 'shared-bindings/bleio/UUID.h')
| -rw-r--r-- | shared-bindings/bleio/UUID.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-bindings/bleio/UUID.h b/shared-bindings/bleio/UUID.h index d6fcbac1b..e27058516 100644 --- a/shared-bindings/bleio/UUID.h +++ b/shared-bindings/bleio/UUID.h @@ -28,12 +28,12 @@ #define MICROPY_INCLUDED_SHARED_BINDINGS_BLEIO_UUID_H #include "common-hal/bleio/UUID.h" -#include "shared-bindings/bleio/UUIDType.h" extern const mp_obj_type_t bleio_uuid_type; -extern void common_hal_bleio_uuid_construct(bleio_uuid_obj_t *self, const mp_obj_t *uuid); +extern void common_hal_bleio_uuid_construct(bleio_uuid_obj_t *self, mp_int_t uuid16, uint8_t uuid128[]); extern void common_hal_bleio_uuid_print(bleio_uuid_obj_t *self, const mp_print_t *print); -extern bleio_uuid_type_t common_hal_bleio_uuid_get_type(bleio_uuid_obj_t *self); +extern bool common_hal_bleio_uuid_get_vendor_specific(bleio_uuid_obj_t *self); +extern uint32_t common_hal_bleio_uuid_get_uuid16(bleio_uuid_obj_t *self); #endif // MICROPY_INCLUDED_SHARED_BINDINGS_BLEIO_UUID_H |
