The .swift file is part of an iOS ObjC static lib. When I try to build, I get the build error.
Sleep is because I want to make sure that stopscan is done and then want to completely and gracefully tear down CBCentralManager.
import UIKit
import CoreBluetooth
import os
// Instantiate BLE central service:
var BLE_Central_instance = BLE_Central();
. . .
// Tears down BLE central
public func stop_BLE_Central()
{
os_log("BLE_Central: stop_BLE_Central...")
BLE_Central_instance.stop_CBCentralManager()
os_log("BLE_Central: stop_BLE_Central done.")
}
. . .
@objc open class BLE_Central: NSObject
{
. . .
@objc public func stop_CBCentralManager()
{
os_log("BLE_Central: stop_CBCentralManager...")
centralManager.stopScan()
os_log(" Scanning stopped (ie. centralManager)")
Sleep(5)
centralManager = nil
data.removeAll(keepingCapacity: false)
os_log("BLE_Central: stop_CBCentralManager done.")
}
Credit to paulw for
Thread.sleep