Commit eb0df28d authored by Gus Grubba's avatar Gus Grubba Committed by GitHub

Merge pull request #4286 from dogmaphobic/bluetooth

Switch Bluetooth connection from a generic Rfcomm protocol...
parents 21cfa71a bee16a67
......@@ -150,7 +150,7 @@ bool BluetoothLink::_hardwareConnect()
_discoveryAgent->start();
#else
_createSocket();
_targetSocket->connectToService(QBluetoothAddress(_config->device().address), QBluetoothUuid(QBluetoothUuid::Rfcomm));
_targetSocket->connectToService(QBluetoothAddress(_config->device().address), QBluetoothUuid(QBluetoothUuid::SerialPort));
#endif
return true;
}
......@@ -352,9 +352,17 @@ void BluetoothConfiguration::startScan()
void BluetoothConfiguration::deviceDiscovered(QBluetoothDeviceInfo info)
{
//print_device_info(info);
if(!info.name().isEmpty() && info.isValid())
{
#if 0
qDebug() << "Name: " << info.name();
qDebug() << "Address: " << info.address().toString();
qDebug() << "Service Classes:" << info.serviceClasses();
QList<QBluetoothUuid> uuids = info.serviceUuids();
foreach (QBluetoothUuid uuid, uuids) {
qDebug() << "Service UUID: " << uuid.toString();
}
#endif
BluetoothData data;
data.name = info.name();
#ifdef __ios__
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment