summaryrefslogtreecommitdiffstats
path: root/sdrbase/dsp/pidcontroller.cpp
blob: 8b015f6b75a9e8d8d1c547fe898d31dc8f2d73e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "pidcontroller.h"

PIDController::PIDController() :
	m_p(0.0),
	m_i(0.0),
	m_d(0.0),
	m_int(0.0),
	m_diff(0.0)
{
}

void PIDController::setup(Real p, Real i, Real d)
{
	m_p = p;
	m_i = i;
	m_d = d;
}