[BUGFIX] airtime noise signed int (fix #143)

This commit is contained in:
Martin/Geno 2018-07-09 00:00:36 +02:00
parent 9fb98cfb33
commit 2697d4c228
No known key found for this signature in database
GPG Key ID: 9D7D3C6BFF600C6A
2 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ type WirelessAirtime struct {
BusyTime uint64 `json:"busy"`
RxTime uint64 `json:"rx"`
TxTime uint64 `json:"tx"`
Noise uint32 `json:"noise"`
Noise int32 `json:"noise"`
Frequency uint32 `json:"frequency"`
}