예제 #1
0
파일: AD5933.cpp 프로젝트: HugoSBIO/drive
double AD5933_Class::getGainFactor(double cResistance, int avgNum)
// Calculate Gain Factor with measuring and averaging multiple times.
{
	return getGainFactor(cResistance, avgNum, true);
}
예제 #2
0
파일: AD5933.cpp 프로젝트: HugoSBIO/drive
double AD5933_Class::getGainFactor(double cResistance)
// Calculate Gain Factor with measuring once.
{
	return getGainFactor(cResistance, 1, true);
}
예제 #3
0
bool AD5933_Class::getGainFactor(double cResistance, int avgNum, double &gainFactor, double &pShift) {
	return getGainFactor(cResistance, avgNum, gainFactor, pShift, true);
}