test/le_audio: remove console packet dump

This commit is contained in:
Matthias Ringwald 2022-08-31 11:14:36 +02:00
parent 2c900158a2
commit 89d4f06736
4 changed files with 0 additions and 18 deletions

View File

@ -697,11 +697,6 @@ static void iso_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *p
} else {
if ((packet_sequence_number & 0x7c) == 0) {
printf("%04x %10"PRIu32" %u ", packet_sequence_number, btstack_run_loop_get_time_ms(), bis_channel);
printf_hexdump(&packet[offset], iso_sdu_length);
}
if (lc3_frames < DUMP_LEN_LC3_FRAMES) {
// store len header only for first bis
if (bis_channel == 0) {

View File

@ -447,10 +447,6 @@ static void send_iso_packet(uint8_t bis_index) {
if (((packet_sequence_numbers[bis_index] & 0x7f) == 0) && (bis_index == 0)) {
printf("Encoding time: %u\n", time_generation_ms);
}
if ((packet_sequence_numbers[bis_index] & 0x7c) == 0){
printf("%04x %10u %u ", packet_sequence_numbers[bis_index], btstack_run_loop_get_time_ms(), bis_index);
printf_hexdump(&buffer[8], octets_per_frame);
}
#endif
packet_sequence_numbers[bis_index]++;

View File

@ -646,11 +646,6 @@ static void iso_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *p
} else {
if ((packet_sequence_number & 0x7c) == 0) {
printf("%04x %10u %u ", packet_sequence_number, btstack_run_loop_get_time_ms(), cis_channel);
printf_hexdump(&packet[offset], iso_sdu_length);
}
#ifdef HAVE_POSIX_FILE_IO
if (lc3_frames < DUMP_LEN_LC3_FRAMES) {
// store len header only for first bis

View File

@ -369,10 +369,6 @@ static void encode_and_send(uint8_t cis_index){
if (((packet_sequence_numbers[cis_index] & 0x7f) == 0) && (cis_index == 0)) {
printf("Encoding time: %u\n", time_generation_ms);
}
if ((packet_sequence_numbers[cis_index] & 0x7c) == 0){
printf("%04x %10u %u ", packet_sequence_numbers[cis_index], btstack_run_loop_get_time_ms(), cis_index);
printf_hexdump(&buffer[8], octets_per_frame);
}
packet_sequence_numbers[cis_index]++;
}