Changeset 5287
- Timestamp:
- 10/09/07 14:53:06 (6 years ago)
- Location:
- components/Interpolator/branches/Interpolator-metadata
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
components/Interpolator/branches/Interpolator-metadata
- Property svn:ignore
-
old new 3 3 autotest.cpp 4 4 aclocal.m4 5 doc s5 documentation 6 6 latex 7 7 html
-
- Property svn:ignore
-
components/Interpolator/branches/Interpolator-metadata/.ignore
r4416 r5287 3 3 autotest.cpp 4 4 aclocal.m4 5 doc s5 documentation 6 6 latex 7 7 html -
components/Interpolator/branches/Interpolator-metadata/Interpolator.cpp
r5057 r5287 153 153 for (unsigned int i = 0; i < len_h; i++) { 154 154 h[i] = (*coeff_ptr)[i]; 155 DEBUG(4, Interpolator, "Coeff[" << i << "] = " << h[i]) 155 //DEBUG(4, Interpolator, "Coeff[" << i << "] = " << h[i]) 156 printf("g(%d) = %f;\n", i+1, h[i]); 156 157 } 157 158 i_filter = new SigProc::fir_filter(h, len_h); … … 220 221 h = new float[len_h]; 221 222 SigProc::DesignRRCFilter(M, m, beta, h); 223 for (unsigned int j=0; j<len_h; j++) 224 printf("h(%d) = %f;\n", j+1, h[j]); 222 225 223 226 i_filter = new SigProc::fir_filter(h, len_h); … … 289 292 } 290 293 dataIn->bufferEmptied(); 291 DEBUG(5, Interpolator, "Interpolator about to send data.");292 294 dataOut->pushPacket(I_out, Q_out, *metadata); 293 DEBUG(5, Interpolator, "Interpolator data sent.");294 295 } 295 296 } -
components/Interpolator/branches/Interpolator-metadata/main.cpp
r4935 r5287 23 23 #include <iostream> 24 24 #include "ossie/ossieSupport.h" 25 #include "ossie/debug.h" 25 26 26 27 #include "Interpolator.h" … … 31 32 32 33 int main(int argc, char* argv[]) 33 34 34 { 35 ossieDebugLevel = 5; 35 36 ossieSupport::ORB *orb = new ossieSupport::ORB; 36 37 omni_mutex component_running_mutex;