deleted hci_ready_to_send - unused

This commit is contained in:
matthias.ringwald 2011-06-19 19:03:24 +00:00
parent f9877e5725
commit b2f09bc060
2 changed files with 0 additions and 5 deletions

View File

@ -208,10 +208,6 @@ uint16_t hci_max_acl_data_packet_length(){
return hci_stack.acl_data_packet_length;
}
int hci_ready_to_send(hci_con_handle_t handle){
return hci_number_free_acl_slots() && hci_number_outgoing_packets(handle) < 2;
}
int hci_send_acl_packet(uint8_t *packet, int size){
// check for free places on BT module

View File

@ -275,7 +275,6 @@ int hci_send_acl_packet(uint8_t *packet, int size);
hci_connection_t * connection_for_handle(hci_con_handle_t con_handle);
uint8_t hci_number_outgoing_packets(hci_con_handle_t handle);
uint8_t hci_number_free_acl_slots(void);
int hci_ready_to_send(hci_con_handle_t handle);
int hci_authentication_active_for_handle(hci_con_handle_t handle);
void hci_drop_link_key_for_bd_addr(bd_addr_t *addr);
uint16_t hci_max_acl_data_packet_length(void);