function output = testSine(input, framesPerBuffer, time)

% Function to generate a sine wave in the output buffer

output = .5*sin([1:framesPerBuffer*2]/(framesPerBuffer*2) * 2*pi);
