- removed debug stuff

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@978 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-06-15 10:08:49 +00:00
parent ab1ef06e81
commit 4192bc92aa
2 changed files with 1 additions and 7 deletions
-4
View File
@@ -9,7 +9,6 @@ Interpolator::Interpolator()
: m_adv(0)
, m_mu(0)
{
count = 0;
}
Interpolator::~Interpolator()
@@ -22,9 +21,6 @@ void Interpolator::process(radio_float_t dMu)
m_mu += dMu;
m_adv = (size_t)m_mu;
m_mu -= m_adv;
std::cout << count << ": adv = " << m_adv << ", mu = " << m_mu << std::endl;
count++;
}
radio_float_t Interpolator::getMu()
+1 -3
View File
@@ -19,12 +19,10 @@ public:
radio_float_t getMu();
size_t getAdv();
void process(radio_float_t dMu);
private:
radio_float_t m_mu;
size_t m_adv;
uint32_t count;
};
} // Interpolation
} // Radio