Changeset 5518
- Timestamp:
- 10/25/07 15:39:20 (6 years ago)
- Location:
- experimental/components/FrameAssembler/branches/FrameAssembler-metadata/src
- Files:
-
- 2 modified
-
FrameAssembler.cpp (modified) (4 diffs)
-
main.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
experimental/components/FrameAssembler/branches/FrameAssembler-metadata/src/FrameAssembler.cpp
r5471 r5518 270 270 271 271 // push preamble 272 for (unsigned int i=0; i<4; i++) 272 for (unsigned int i=0; i<16; i++) { 273 DEBUG(7, FrameAssembler, "pushing phasing " << I_out_phasing_pattern.length() << " frame samples") 273 274 dataOut_0->pushPacket(I_out_phasing_pattern, Q_out_phasing_pattern, *metadata); 275 } 274 276 275 277 // ASSEMBLE_HEADER … … 285 287 286 288 // push data 289 DEBUG(7, FrameAssembler, "pushing header " << I_out_header.length() << " frame samples") 287 290 dataOut_0->pushPacket(I_out_header, Q_out_header, *metadata); 288 291 … … 303 306 I_out_0.length(j); 304 307 Q_out_0.length(j); 305 DEBUG(7, FrameAssembler, "pushing " << I_out_0.length() << " frame samples")308 DEBUG(7, FrameAssembler, "pushing frame " << I_out_0.length() << " frame samples") 306 309 dataOut_0->pushPacket(I_out_0, Q_out_0, *metadata); 307 310 j=0; … … 312 315 // push phasing pattern 313 316 ///\todo assemble EOM code 314 dataOut_0->pushPacket(I_out_phasing_pattern, Q_out_phasing_pattern, *metadata); 317 // push preamble 318 for (unsigned int i=0; i<4; i++) { 319 DEBUG(7, FrameAssembler, "pushing tail " << I_out_phasing_pattern.length() << " frame samples") 320 dataOut_0->pushPacket(I_out_phasing_pattern, Q_out_phasing_pattern, *metadata); 321 } 315 322 316 323 } -
experimental/components/FrameAssembler/branches/FrameAssembler-metadata/src/main.cpp
r4979 r5518 23 23 #include <iostream> 24 24 #include "ossie/ossieSupport.h" 25 #include "ossie/debug.h" 25 26 26 27 #include "FrameAssembler.h" … … 31 32 32 33 int main(int argc, char* argv[]) 33 34 34 { 35 ossieDebugLevel = 1; 35 36 ossieSupport::ORB *orb = new ossieSupport::ORB; 36 37 omni_mutex component_running_mutex;