Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/bluetooth_data_tools/gap.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ cdef object _cached_uint16_bytes_as_uuid
cdef object _cached_uint32_bytes_as_uuid
cdef object _cached_uint128_bytes_as_uuid
cdef object _cached_parse_advertisement_data
cdef object _cached_parse_advertisement_data_tuple
cdef object _cached_from_bytes_signed

cdef object _LOGGER
Expand Down Expand Up @@ -46,7 +45,6 @@ cpdef parse_advertisement_data(object data)

@cython.locals(
gap_data="const unsigned char *",
gap_value=cython.bytes,
gap_type_num="unsigned char",
total_length=cython.uint,
length="unsigned char",
Expand All @@ -57,6 +55,6 @@ cpdef parse_advertisement_data(object data)
)
cpdef _uncached_parse_advertisement_bytes(bytes gap_bytes)

cpdef _uncached_parse_advertisement_data(bytes gap_bytes)
cpdef _uncached_parse_advertisement_data(bytes data)

cpdef _uncached_parse_advertisement_tuple(tuple data)
3 changes: 1 addition & 2 deletions src/bluetooth_data_tools/utils.pxd
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
cdef object L_PACK
cpdef object mac_to_int(str mac)
cpdef object mac_to_int(str address)
Loading