aredn: 20MHz wide channel fix for adjust_rate function in utils.lua (#129)

This commit is contained in:
Eric 2021-07-10 10:40:01 -07:00 committed by GitHub
parent a7ab2c6a46
commit 8f1d23e565
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,8 @@ function adjust_rate(r,b)
ar=round2(r/4,1)
elseif b==10 then
ar=round2(r/2,1)
else
ar=round2(r/1,1)
end
return ar
end