Skip to content

Commit 4606225

Browse files
committed
add logging to stdout for wav file
1 parent c65bd76 commit 4606225

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/correlate_access_code_bb_ts_fl_impl.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,14 @@ int correlate_access_code_bb_ts_fl_impl::general_work(
130130
pmt::from_long(d_pkt_len), // length data
131131
d_me); // block src id
132132

133+
std::stringstream ss;
134+
133135
for (int j = 0; j < d_pkt_len; j++) {
134136
out[nprod++] = in[j];
137+
ss << std::to_string(static_cast<uint8_t>(in[j]));
135138
}
139+
140+
GR_LOG_DEBUG(d_logger, boost::format(ss.str()));
136141
}
137142

138143
consume_each(1);

0 commit comments

Comments
 (0)