hci.h (d90722d454a027a73a0561873342f97012ce96a5) | hci.h (8f4649e3ba0a9d21085f42b688929492b3ab33b7) |
---|---|
1/* 2 * Copyright (C) 2014 BlueKitchen GmbH 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright --- 1520 unchanged lines hidden (view full) --- 1529 1530/** 1531 * @brief Send ISO packet prepared in HCI packet buffer 1532 */ 1533uint8_t hci_send_iso_packet_buffer(uint16_t size); 1534 1535/** 1536 * Reserves outgoing packet buffer. | 1/* 2 * Copyright (C) 2014 BlueKitchen GmbH 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright --- 1520 unchanged lines hidden (view full) --- 1529 1530/** 1531 * @brief Send ISO packet prepared in HCI packet buffer 1532 */ 1533uint8_t hci_send_iso_packet_buffer(uint16_t size); 1534 1535/** 1536 * Reserves outgoing packet buffer. |
1537 * @return true on success | 1537 * @note Must only be called after a 'can send now' check or event 1538 * @note Asserts if packet buffer is already reserved |
1538 */ | 1539 */ |
1539bool hci_reserve_packet_buffer(void); | 1540void hci_reserve_packet_buffer(void); |
1540 1541/** 1542 * Get pointer for outgoing packet buffer 1543 */ 1544uint8_t* hci_get_outgoing_packet_buffer(void); 1545 1546/** 1547 * Release outgoing packet buffer\ --- 333 unchanged lines hidden --- | 1541 1542/** 1543 * Get pointer for outgoing packet buffer 1544 */ 1545uint8_t* hci_get_outgoing_packet_buffer(void); 1546 1547/** 1548 * Release outgoing packet buffer\ --- 333 unchanged lines hidden --- |