Exemplo n.º 1
0
double AD5933_Class::getGainFactor(double cResistance, int avgNum)
// Calculate Gain Factor with measuring and averaging multiple times.
{
	return getGainFactor(cResistance, avgNum, true);
}
Exemplo n.º 2
0
double AD5933_Class::getGainFactor(double cResistance)
// Calculate Gain Factor with measuring once.
{
	return getGainFactor(cResistance, 1, true);
}
Exemplo n.º 3
0
bool AD5933_Class::getGainFactor(double cResistance, int avgNum, double &gainFactor, double &pShift) {
	return getGainFactor(cResistance, avgNum, gainFactor, pShift, true);
}