Commit 23936a2b authored by Joanne Hugé's avatar Joanne Hugé

WIP: send and encode working

parent 207a4c54
......@@ -284,12 +284,12 @@ static void print_stats(FILE * f, int print_header) {
"%" STAT_INT_LEN "" PRIi64 "pps "
"%" STAT_INT_LEN "" PRIi64 "pps "
"\n",
rx_drop_counter.counter / (IQ_PAYLOAD / N_SAMPLES),
tx_drop_counter.counter / (IQ_PAYLOAD / N_SAMPLES),
N_SAMPLES * sizeof(float) * 2 * rx_drop_counter.counter / IQ_PAYLOAD,
N_SAMPLES * sizeof(float) * 2 * tx_drop_counter.counter / IQ_PAYLOAD,
recv_counter.counter / 4,
decode_counter.counter / 4,
read_counter.counter / (IQ_PAYLOAD / N_SAMPLES),
write_counter.counter / (IQ_PAYLOAD / N_SAMPLES),
N_SAMPLES * sizeof(float) * 2 * read_counter.counter / IQ_PAYLOAD,
N_SAMPLES * sizeof(float) * 2 * write_counter.counter / IQ_PAYLOAD,
encode_counter.counter / 4,
sent_counter.counter / 4,
recv_counter.pps,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment