Exemplo n.º 1
0
void Filter::writeFC_LO(unsigned char fc_lo)
{
    fc = (fc & 0x7f8) | (fc_lo & 0x007);
    updatedCenterFrequency();
}
Exemplo n.º 2
0
void Filter::writeFC_HI(unsigned char fc_hi)
{
    fc = (fc_hi << 3 & 0x7f8) | (fc & 0x007);
    updatedCenterFrequency();
}
Exemplo n.º 3
0
void Filter::setClockFrequency(const float clock) {
	clockFrequency = clock;
	updatedCenterFrequency();
}