コード例 #1
0
ファイル: CGearTooth.cpp プロジェクト: anidev/frc-simulator
/**
 * Stop the gear tooth sensor from counting.
 * The counting is disabled on the underlying Counter object.
 *
 * @param slot The slot the digital module is plugged into
 * @param channel The digital I/O channel the sensor is plugged into
 */
void StopGearTooth(UINT8 moduleNumber, UINT32 channel)
{
    GearTooth *gt = GTptr(moduleNumber, channel);
    if (gt) gt->Stop();
}
コード例 #2
0
ファイル: CGearTooth.cpp プロジェクト: FRC980/FRC-Team-980
/**
 * Stop the gear tooth sensor from counting.
 * The counting is disabled on the underlying Counter object.
 *
 * @param slot The slot the digital module is plugged into
 * @param channel The digital I/O channel the sensor is plugged into
 */
void StopGearTooth(UINT32 slot, UINT32 channel)
{
	GearTooth *gt = GTptr(slot, channel);
	if (gt) gt->Stop();
}