remove leftover debug printf

This commit is contained in:
Matthias Ringwald 2021-06-03 09:43:20 +02:00
parent 48cdff9c38
commit 2cd41b3385
2 changed files with 0 additions and 2 deletions

View File

@ -521,7 +521,6 @@ static void handle_gatt_client_event(uint8_t packet_type, uint16_t channel, uint
default: default:
printf(" event 0x%02x\n", hci_event_packet_get_type(packet));
break; break;
} }

View File

@ -885,7 +885,6 @@ void hid_device_send_interrupt_message(uint16_t hid_cid, const uint8_t * message
if (!hid_device || !hid_device->interrupt_cid) return; if (!hid_device || !hid_device->interrupt_cid) return;
l2cap_send(hid_device->interrupt_cid, (uint8_t*) message, message_len); l2cap_send(hid_device->interrupt_cid, (uint8_t*) message, message_len);
if (hid_device->user_request_can_send_now){ if (hid_device->user_request_can_send_now){
printf("request user can send now because pending\n");
l2cap_request_can_send_now_event((hid_device->interrupt_cid)); l2cap_request_can_send_now_event((hid_device->interrupt_cid));
} }
} }