Skip to content
New issue

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

Gouroutine does not release Because it is not initialized #5

Open
wants to merge 38 commits into
base: master
Choose a base branch
from

Conversation

GrootYuan
Copy link

No description provided.

moogle19 and others added 30 commits March 16, 2018 09:27
* Fix cancel via context and respect context deadline

* Remove timeout overwrite and remove go1.7 from travis
* Simplify uuid.Reverse method

* Add uuid test

* Fix linting issues
This prevents multiple evtPeripheralConnected events from causing a
deadlock.
* Add ability to get RxMTU from a connection

* Fix race detector warning

* Fix compiler error
This can be useful when we need to use specific HCI device ID.
The `rsp[0] == ErrorResponseCode && len(rsp) == 5` case was duplicated.
Surrounding code uses `rsp[0] == ErrorResponseCode && len(rsp) != 5` (note "not equal")
for the second case, so probably this is probably what we want there as well.
* Made Command Flow Control match the actual behavior specified in
the Bluetooth spec (Vol 2, Part E, Section 4.4), old version tended to
collect extra allowed commands over time and eventually lock up.

* comments on magic numbers

* add options for setting scanning and advertising parameters.

* Close the socket if device intialization fails.

* Fix race condition where new data can be written to a connection while it
is being disconnected, and the buffers are leaked from the packet pool
forever.

* Fix typo in comment.

* Prevent HCI send from blocking forever if the device doesn't respond.

* clear sent table when a reply is received so unexpected packets don't cause
random weirdness.

* Avoid receiving invalid command response on device stop.

* Update readme (go-ble#12)

* Update with disclaimer

* update README

* update README
- acheiving much more stability with this, since errors
   sometimes happen when network is busy, but are in no way
   fatal
This makes it easier to build the project with recent versions of
Go -- check it out anywhere and build, vs having to put in GOPATH
hci: add Connect/DisconnectHandler options
linux.hci: fix stop advertise on new connection
log was removed at 5ba052e but used again at 27f6032
…es-not-implement-ble-DeviceOption

Make the *darwin.Device implement the ble.DeviceOption interface
This commit replaces the use of XPC services with the "cbgo" library
(CoreBluetooth Go).
This fixes what seems to be a Catalina-specific issue.

Pre-Catalina: The DidUpdateState delegate callbacks get called *after*
the delegate properties gets assigned.

Catalina: DidUpdateState gets called immediately upon construction of
the manager objects (CBCentralManager and CBPeripheralManager).

Prior to this commit, the code assumed it could assign the delegate
properties and then listen for the transition to the powered-on state.
This works for older versions of macOS, but with Catalina the code
blocks forever, waiting for an event that has already occurred.

The fix is to use the following procedure:

(for each manager object):
1. Assign the delegate.
2. Check the state.  If the state is not "unknown" then the procedure is
done.
3. Else, wait up to one second for a state change event.
markdrayton and others added 8 commits December 27, 2020 17:46
Currently the check to see if a connection was canceled happens *after*
newConn() is called, leaking a goroutine waiting to receive on chInPkt.
Move the check up.
fix go vet warning for unkeyed field in composite literal
Added support for reading RSSI of a connected peripheral
linux/att: fix duplicated switch case error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.