From 47cfcd64cdf5b2a92493bd364e45b849f961ec18 Mon Sep 17 00:00:00 2001 From: Milanka Ringwald Date: Thu, 20 Jan 2022 15:25:54 +0100 Subject: [PATCH] gatt-service/aics: remove PTS test output --- .../gatt-service/audio_input_control_service_server.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/ble/gatt-service/audio_input_control_service_server.c b/src/ble/gatt-service/audio_input_control_service_server.c index 3c805d469..a3a2ea16d 100644 --- a/src/ble/gatt-service/audio_input_control_service_server.c +++ b/src/ble/gatt-service/audio_input_control_service_server.c @@ -75,12 +75,6 @@ static uint16_t aics_read_callback(hci_con_handle_t con_handle, uint16_t attribu return 0; } -#ifdef ENABLE_TESTING_SUPPORT - if (buffer_size > 0){ - printf("AICS[%d] read 0x%02x\n", aics->index, attribute_handle); - } -#endif - if (attribute_handle == aics->audio_input_state_value_handle){ aics->con_handle = con_handle; uint8_t value[4]; @@ -256,11 +250,6 @@ static int aics_write_callback(hci_con_handle_t con_handle, uint16_t attribute_h return 0; } -#ifdef ENABLE_TESTING_SUPPORT - printf("AICS[%d] write 0x%02x\n", aics->index, attribute_handle); -#endif - - if (attribute_handle == aics->audio_input_control_value_handle){ if (buffer_size == 0){ return AICS_ERROR_CODE_OPCODE_NOT_SUPPORTED;