1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-03-23 20:58:42 -04:00

CalcDB: set floor to -120dB

This commit is contained in:
f4exb 2017-08-23 01:20:52 +02:00
parent 49523b1bbd
commit 0b80971455

View File

@ -22,7 +22,7 @@
class CalcDb
{
public:
static double dbPower(double magsq, double floor = 1e-10);
static double dbPower(double magsq, double floor = 1e-12);
static double powerFromdB(double powerdB);
};