annotate model/integrate.h @ 0:5242703e91d3 tip

Initial checkin for AIM92 aimR8.2 (last updated May 1997).
author tomwalters
date Fri, 20 May 2011 15:19:45 +0100
parents
children
rev   line source
tomwalters@0 1 /*
tomwalters@0 2 integrate.h
tomwalters@0 3 =========
tomwalters@0 4
tomwalters@0 5 interface to some integrators and time samplers
tomwalters@0 6
tomwalters@0 7
tomwalters@0 8
tomwalters@0 9 */
tomwalters@0 10
tomwalters@0 11 #define LowpassDataTypeSource( _source, _stages, _channels, _upward, _downward, _igain ) \
tomwalters@0 12 lowpassDataTypeSource( _source, _stages, _channels, _upward, _downward, _igain )
tomwalters@0 13
tomwalters@0 14 #define BlockSampleSource( _source, _spacing, _channels ) \
tomwalters@0 15 blockSampleSource( _source, _spacing, _channels )
tomwalters@0 16
tomwalters@0 17 #define DownSampleSource( _source, _spacing, _channels ) \
tomwalters@0 18 downSampleSource( _source, _spacing, _channels )
tomwalters@0 19
tomwalters@0 20
tomwalters@0 21 extern Source lowpassDataTypeSource() ;
tomwalters@0 22 extern Source blockSampleSource() ;
tomwalters@0 23 extern Source downSampleSource() ;