ble client: removed printfs

This commit is contained in:
mila@ringwald.ch 2014-04-15 21:36:04 +00:00
parent f5bdf8a133
commit 9d3d42a107
3 changed files with 1 additions and 3 deletions

View File

@ -994,7 +994,6 @@ static void packet_handler(void * connection, uint8_t packet_type, uint16_t chan
if (packet[3]){
linked_list_remove(&le_connections, (linked_item_t *) peripheral);
} else {
printf("connection completed success\n");
peripheral->state = P_W2_EXCHANGE_MTU;
peripheral->handle = READ_BT_16(packet, 4);
}

View File

@ -187,7 +187,6 @@ static void handle_le_central_event(le_central_event_t * event){
verify_advertisement((ad_event_t *) event);
break;
case GATT_CONNECTION_COMPLETE:
printf("GATT_CONNECTION_COMPLETE\n");
connected = 1;
break;
case GATT_SERVICE_QUERY_RESULT:

View File

@ -58,7 +58,7 @@ int l2cap_can_send_connectionless_packet_now(void){
}
int hci_send_cmd(const hci_cmd_t *cmd, ...){
printf("hci_send_cmd opcode 0x%02x\n", cmd->opcode);
// printf("hci_send_cmd opcode 0x%02x\n", cmd->opcode);
return 0;
}