We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in pygatt/backends/bgapi/bgapi.py, in function _scan_rsp_data():
line 554:
# End of field field_name = ( constants.scan_response_data_type[field_value[0]])
line 583: data_dict[field_name] = bytearray(field_value)
data_dict[field_name] = bytearray(field_value)
at every fileld end, no check is performed on the existance of the key 'field_name' prior to assignment.
BLE standard allows for certain data types to be repeated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in pygatt/backends/bgapi/bgapi.py, in function _scan_rsp_data():
line 554:
line 583:
data_dict[field_name] = bytearray(field_value)
at every fileld end, no check is performed on the existance of the key 'field_name' prior to assignment.
BLE standard allows for certain data types to be repeated.
The text was updated successfully, but these errors were encountered: