MCPcopy Create free account
hub / github.com/FastLED/FastLED / maxActiveBins

Function maxActiveBins

tests/misc/fft_sweep.hpp:168–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

166}
167
168int maxActiveBins(fl::span<const SweepFrame> frames) {
169 int maxBins = 0;
170 for (fl::size i = 0; i < frames.size(); ++i) {
171 if (frames[i].activeBins > maxBins) {
172 maxBins = frames[i].activeBins;
173 }
174 }
175 return maxBins;
176}
177
178} // namespace
179

Callers 1

fft_sweep.hppFile · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected