summaryrefslogtreecommitdiff
path: root/gatoperipheral.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gatoperipheral.cpp')
-rw-r--r--gatoperipheral.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/gatoperipheral.cpp b/gatoperipheral.cpp
index 0a1f723..0228471 100644
--- a/gatoperipheral.cpp
+++ b/gatoperipheral.cpp
@@ -41,7 +41,8 @@ enum EIRDataFields {
EIRTxPowerLevel = 0x0A,
EIRDeviceClass = 0x0D,
EIRSecurityManagerTKValue = 0x10,
- EIRSecurityManagerOutOfBandFlags = 0x11
+ EIRSecurityManagerOutOfBandFlags = 0x11,
+ EIRSolicitedUUID128List = 0x15
};
GatoPeripheral::GatoPeripheral(const GatoAddress &addr, QObject *parent) :
@@ -127,6 +128,10 @@ void GatoPeripheral::parseEIR(quint8 data[], int len)
case EIRCompleteLocalName:
d->parseName(true, &data[pos + 1], item_len - 1);
break;
+ case EIRTxPowerLevel:
+ case EIRSolicitedUUID128List:
+ qDebug() << "Unhandled EIR data type" << type;
+ break;
default:
qWarning() << "Unknown EIR data type" << type;
break;