diff options
| author | Dan Halbert <halbert@halwitz.org> | 2018-11-20 23:04:58 -0500 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2018-11-20 23:04:58 -0500 |
| commit | 1763ffe2450fa07c74db225cc5ef3a6e2feb669b (patch) | |
| tree | 0c6bf99479b1c135928aea9a9d475f01c84ce9d4 /shared-bindings/bleio/UUID.h | |
| parent | c424ad844b0241483d5968b7c4f158f61d498752 (diff) | |
More UUID work; use mp_raise for exceptions
Diffstat (limited to 'shared-bindings/bleio/UUID.h')
| -rw-r--r-- | shared-bindings/bleio/UUID.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shared-bindings/bleio/UUID.h b/shared-bindings/bleio/UUID.h index e27058516..79810dc97 100644 --- a/shared-bindings/bleio/UUID.h +++ b/shared-bindings/bleio/UUID.h @@ -33,7 +33,8 @@ extern const mp_obj_type_t bleio_uuid_type; 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 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); +extern uint32_t common_hal_bleio_uuid_get_uuid128_handle(bleio_uuid_obj_t *self); +extern uint32_t common_hal_bleio_uuid_get_size(bleio_uuid_obj_t *self); #endif // MICROPY_INCLUDED_SHARED_BINDINGS_BLEIO_UUID_H |
