diff --git a/.settings/org.eclipse.buildship.core.prefs b/.settings/org.eclipse.buildship.core.prefs
index e889521..e479558 100644
--- a/.settings/org.eclipse.buildship.core.prefs
+++ b/.settings/org.eclipse.buildship.core.prefs
@@ -1,2 +1,13 @@
+arguments=
+auto.sync=false
+build.scans.enabled=false
+connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)
connection.project.dir=
eclipse.preferences.version=1
+gradle.user.home=
+java.home=
+jvm.arguments=
+offline.mode=false
+override.workspace.settings=false
+show.console.view=false
+show.executions.view=false
diff --git a/pcap/.classpath b/pcap/.classpath
index 9f9cc9f..bfdccfd 100644
--- a/pcap/.classpath
+++ b/pcap/.classpath
@@ -13,6 +13,12 @@
+
+
+
+
+
+
diff --git a/pcap/VERSION b/pcap/VERSION
index f0a2883..5e9287b 100644
--- a/pcap/VERSION
+++ b/pcap/VERSION
@@ -1 +1 @@
-1.9.10
+1.9.11
diff --git a/pcap/src/main/java/com/silabs/na/pcap/LinkType.java b/pcap/src/main/java/com/silabs/na/pcap/LinkType.java
index c59f4a1..3d49500 100644
--- a/pcap/src/main/java/com/silabs/na/pcap/LinkType.java
+++ b/pcap/src/main/java/com/silabs/na/pcap/LinkType.java
@@ -239,6 +239,13 @@ public enum LinkType {
ETW(290),
NETANALYZER_NG(291),
ZBOSS_NCP(292),
+ USB_2_0_LOW_SPEED(293),
+ USB_2_0_FULL_SPEED(294),
+ USB_2_0_HIGH_SPEED(295),
+ AUERSWALD_LOG(296),
+ ZWAVE_TAP(297),
+ SILABS_DEBUG_CHANNEL(298),
+ FIRA_UCI(299),
// Start of footer
UNKNOWN(Integer.MAX_VALUE);
@@ -257,6 +264,16 @@ public int code() {
return code;
}
+ /**
+ * Returns the one established DLT for the
+ * silabs debug channel.
+ *
+ * @return
+ */
+ public static LinkType silabsDebugChannel() {
+ return SILABS_DEBUG_CHANNEL;
+ }
+
/**
* Given a code, returns the enum value that matches it.
*