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
With this test program:
import GATT import Bluetooth import BluetoothLinux typealias LinuxCentral = GATTCentral<BluetoothLinux.HostController, BluetoothLinux.L2CAPSocket> guard let hostController = await HostController.default else { fatalError("No Bluetooth hardware available") } let central = LinuxCentral(hostController: hostController, socket: BluetoothLinux.L2CAPSocket.self) // start scanning let stream = try await central.scan(filterDuplicates: true) for try await scanData in stream { print(scanData) stream.stop() }
I'm getting Swift/ErrorType.swift:200: Fatal error: Error raised at top level: Command Disallowed (even with sudo).
Swift/ErrorType.swift:200: Fatal error: Error raised at top level: Command Disallowed
sudo
I'm on an Ubuntu 20.04.2 LTS derivate. Any idea what could be wrong?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With this test program:
I'm getting
Swift/ErrorType.swift:200: Fatal error: Error raised at top level: Command Disallowed
(even withsudo
).I'm on an Ubuntu 20.04.2 LTS derivate. Any idea what could be wrong?
The text was updated successfully, but these errors were encountered: