[BUGFIX] wifi link
This commit is contained in:
parent
0a207d0170
commit
27ec9c1ab9
@ -107,7 +107,10 @@ func (builder *graphBuilder) readNodes(nodes map[string]*runtime.Node) {
|
|||||||
for _, wifiNeighbours := range neighbours.WifiNeighbours {
|
for _, wifiNeighbours := range neighbours.WifiNeighbours {
|
||||||
for targetAddress, link := range wifiNeighbours.Neighbours {
|
for targetAddress, link := range wifiNeighbours.Neighbours {
|
||||||
if targetID, found := builder.macToID[targetAddress]; found {
|
if targetID, found := builder.macToID[targetAddress]; found {
|
||||||
builder.addLink(targetID, sourceID, link.Noise/link.Signal)
|
linkActive := link.Noise + link.Inactive + link.Signal
|
||||||
|
if linkActive > 0 {
|
||||||
|
builder.addLink(targetID, sourceID, link.Signal/linkActive)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user