コード例 #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
ファイル: AD5933.cpp プロジェクト: m4loman/Impalyzer
bool AD5933_Class::getGainFactor(double cResistance, int avgNum, double &gainFactor, double &pShift) {
	return getGainFactor(cResistance, avgNum, gainFactor, pShift, true);
}