Embedded Systems
rt_nuf.txt
Associated article: Real-Time Enough
Tags: C/C++ Open Source Embedded Systems Design
Real-time Enough
by Robert Krten
Listing One
// clear out intermediate sums
factors [0] = factors [1] = factors [2] = factors [3] = 0;
// get to the beginning of the samples
j = handle -> ringstart;
// do the multiply-accumulates
for (i = 0; i < handle -> corrsize; i++) {
if (...


