This commit is contained in:
2025-03-29 20:52:49 +01:00
parent 78539e7b6a
commit 8c9c721739
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -22,6 +22,6 @@ float dbr_to_deviation(float dbr) {
return 19000.0f * powf(10.0f, dbr / 10.0f);
}
float deviation_to_dbr(float dbr) {
float deviation_to_dbr(float deviation) {
return 10*log10f(deviation/19000.0f);
}