
AVERAGING
---------

Computes the continuous ("running") average of the input signal:

 sum = sum+input
 n = n+1
 output = sum/n

Everytime the Reset pin is set to TRUE, both sum and n are zeroed.

NOTE: Double precision is used internally for increased accuracy

NOTE: This module does not support powersaving because it really can never settle