| 9 | #define HEARTBEAT_CHECK_PERIOD_MICROS (50 * 1000) |
| 10 | |
| 11 | FFTDataDistributor::FFTDataDistributor() : outputBuffers("FFTDataDistributorBuffers"), fftSize(DEFAULT_FFT_SIZE), linesPerSecond(DEFAULT_WATERFALL_LPS), lineRateAccum(0.0) { |
| 12 | |
| 13 | } |
| 14 | |
| 15 | void FFTDataDistributor::setFFTSize(unsigned int size) { |
| 16 |
nothing calls this directly
no outgoing calls
no test coverage detected