Packets bad. GUVWAF has verified that these are bad packets, may have fixed a bug up stream in the process that was exposed by having the data available.

This commit is contained in:
Garth Vander Houwen 2024-08-31 15:35:26 -07:00
parent 0fe00b0db0
commit bff9903573
3 changed files with 6 additions and 6 deletions

View file

@ -1428,6 +1428,9 @@
},
"Bad" : {
},
"Bad Packets: %d" : {
},
"Bandwidth" : {
@ -6725,9 +6728,6 @@
},
"Drag & Drop is the recommended way to update firmware for NRF devices. If your iPhone or iPad is USB-C it will work with your regular USB-C charging cable, for lightning devices you need the Apple Lightning to USB camera adaptor." : {
},
"Dupe / Bad Packets: %d" : {
},
"echo" : {
"localizations" : {

View file

@ -119,7 +119,7 @@ struct Connect: View {
.font(.caption)
.fontWeight(.medium)
.foregroundStyle(.secondary)
Text("Dupe / Bad Packets: \(localStats?.numPacketsRxBad ?? 0)")
Text("Bad Packets: \(localStats?.numPacketsRxBad ?? 0)")
.font(.caption)
.fontWeight(.medium)
.foregroundStyle(.secondary)

View file

@ -81,7 +81,7 @@ struct WidgetsLiveActivity: Widget {
.font(.caption)
.foregroundStyle(.secondary)
.fixedSize()
Text("Dupe / Bad \(context.state.badReceivedPackets)")
Text("Bad \(context.state.badReceivedPackets)")
.font(.caption)
.foregroundStyle(.secondary)
.fixedSize()
@ -215,7 +215,7 @@ struct NodeInfoView: View {
.foregroundStyle(.secondary)
.opacity(isLuminanceReduced ? 0.8 : 1.0)
.fixedSize()
Text("Dupe / Bad Packets: \(badReceivedPackets)")
Text("Bad Packets: \(badReceivedPackets)")
.font(.caption)
.fontWeight(.medium)
.foregroundStyle(.secondary)