mirror of
https://github.com/g4klx/MMDVM.git
synced 2026-08-21 14:36:21 +02:00
Small code cleanups.
This commit is contained in:
@@ -370,8 +370,7 @@ void CIO::process()
|
||||
FMVals[i] = q15_t(__SSAT((res1 >> 15), 16));
|
||||
}
|
||||
#endif
|
||||
bool cos = getCOSInt();
|
||||
fm.samples(cos, FMVals, RX_BLOCK_SIZE);
|
||||
fm.samples(FMVals, RX_BLOCK_SIZE);
|
||||
}
|
||||
} else if (m_modemState == STATE_DSTAR) {
|
||||
if (m_dstarEnable) {
|
||||
@@ -444,8 +443,7 @@ void CIO::process()
|
||||
FMVals[i] = q15_t(__SSAT((res1 >> 15), 16));
|
||||
}
|
||||
#endif
|
||||
bool cos = getCOSInt();
|
||||
fm.samples(cos, FMVals, RX_BLOCK_SIZE);
|
||||
fm.samples(FMVals, RX_BLOCK_SIZE);
|
||||
} else if (m_modemState == STATE_DSTARCAL) {
|
||||
q15_t GMSKVals[RX_BLOCK_SIZE];
|
||||
::arm_fir_fast_q15(&m_gaussianFilter, samples, GMSKVals, RX_BLOCK_SIZE);
|
||||
|
||||
Reference in New Issue
Block a user