diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-18 13:13:48 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-18 13:13:48 -0400 |
commit | 0183e3ed10c551fefdbb0ed095d896cf01699a54 (patch) | |
tree | 788ff905a1299f948ed6908d7076a7caad17c5f1 /gr-blocks/lib/check_lfsr_32k_s_impl.cc | |
parent | d26514b07a5d15206687b636a2a0c51ad10684c1 (diff) |
blocks: removing lfsr and friends from core; now in gr-blocks.
Diffstat (limited to 'gr-blocks/lib/check_lfsr_32k_s_impl.cc')
-rw-r--r-- | gr-blocks/lib/check_lfsr_32k_s_impl.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-blocks/lib/check_lfsr_32k_s_impl.cc b/gr-blocks/lib/check_lfsr_32k_s_impl.cc index b8e88003a2..5664067591 100644 --- a/gr-blocks/lib/check_lfsr_32k_s_impl.cc +++ b/gr-blocks/lib/check_lfsr_32k_s_impl.cc @@ -40,7 +40,7 @@ namespace gr { } check_lfsr_32k_s_impl::check_lfsr_32k_s_impl() - : gr_sync_block("gr_check_lfsr_32k", + : gr_sync_block("check_lfsr_32k", gr_make_io_signature(1, 1, sizeof(short)), gr_make_io_signature(0, 0, 0)), d_state(SEARCHING), d_history(0), d_ntotal(0), d_nright(0), @@ -127,7 +127,7 @@ namespace gr { d_index = 0; // reset LFSR to beginning if(0) - fprintf(stdout, "gr_check_lfsr_32k: enter_SEARCHING at offset %8ld (0x%08lx)\n", + fprintf(stdout, "check_lfsr_32k: enter_SEARCHING at offset %8ld (0x%08lx)\n", d_ntotal, d_ntotal); enter_MATCH0(); @@ -162,7 +162,7 @@ namespace gr { d_index = 3; // already matched first 3 items if(0) - fprintf(stdout, "gr_check_lfsr_32k: enter_LOCKED at offset %8ld (0x%08lx)\n", + fprintf(stdout, "check_lfsr_32k: enter_LOCKED at offset %8ld (0x%08lx)\n", d_ntotal, d_ntotal); } @@ -171,7 +171,7 @@ namespace gr { { if(0) fprintf(stdout, - "gr_check_lfsr_32k: expected %5d (0x%04x) got %5d (0x%04x) offset %8ld (0x%08lx)\n", + "check_lfsr_32k: expected %5d (0x%04x) got %5d (0x%04x) offset %8ld (0x%08lx)\n", expected, expected, actual, actual, d_ntotal, d_ntotal); } |