Background: I am dealing with reverse engineering a software. And trying to understand a formula in the code.
I found a formula that reads:
pga_gain = pow (10.0, agc / 20.0);
In the above formula what are 10.0 and 20.0. 10 seems to be the log10 base. Is that correct? In any case I would appreciate if someone could give me the names of those magic numbers in that formula.
thanks.