[FIX]: Fixed the file transfer TX mode for bluetooth#29
Merged
Conversation
Contributor
|
[CHANGE LOG] 📋 Changelog updated for PR #29. View changelog |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes Made
apps/bt/main.py: Populated paired-devices list from persistent bond store (self._bt.paired_devices()) instead of hardcoding an empty "Paired (0 / 3)" placeholder.apps/bt/main.py: Made paired rows selectable and activatable — pressing A on a paired entry callsself._bt.forget(mac)to remove the bond, with a matching hint bar ("A=Forget").oreoWare/bt.py: Fixedstart_pair()to resolveaddr_typeandaddrfrom live scan results instead of defaulting to PUBLIC (type 0), which silently broke every iPhone connection (iOS uses Random Resolvable addresses, type 1).oreoWare/bt.py: Extended_parse_adv()to extract the Company Identifier from manufacturer-specific data (AD type 0xFF) and strip NUL-padded names — handles iOS name suppression and padding quirks.oreoWare/bt.py: Added_MFR_TAGSlookup so unnamed peers get a brand label (e.g. "Apple device") instead of "(unknown)".oreoWare/bt.py: Rewrote advertising to include GAP Appearance and a scan-response payload (full name + 128-bit service UUID); reduced interval from 500 ms to 200 ms for reliable iOS discovery, with graceful fallback on older MicroPython builds lackingresp_data.oreoWare/bt.py: Stashedaddr_typeand rawaddrbytes per scan entry sostart_pair()can recover them even when the caller only passes a MAC.Checklist
=, no pathlib, no walrus in modules that ship to flash