mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-29 22:20:37 +00:00
hci: fix build
This commit is contained in:
parent
a84946b2a9
commit
ed2083442e
@ -216,7 +216,7 @@ static void hci_emit_event(uint8_t * event, uint16_t size, int dump);
|
|||||||
static void hci_emit_acl_packet(uint8_t * packet, uint16_t size);
|
static void hci_emit_acl_packet(uint8_t * packet, uint16_t size);
|
||||||
static void hci_run(void);
|
static void hci_run(void);
|
||||||
static bool hci_is_le_connection(hci_connection_t * connection);
|
static bool hci_is_le_connection(hci_connection_t * connection);
|
||||||
static uint8_t hci_send_prepared_cmd_packet();
|
static uint8_t hci_send_prepared_cmd_packet(void);
|
||||||
|
|
||||||
#ifdef ENABLE_CLASSIC
|
#ifdef ENABLE_CLASSIC
|
||||||
static int hci_have_usb_transport(void);
|
static int hci_have_usb_transport(void);
|
||||||
@ -7586,7 +7586,7 @@ static void hci_set_sco_payload_length_for_flipped_packet_types(hci_connection_t
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// funnel for sending cmd packet using single outgoing buffer
|
// funnel for sending cmd packet using single outgoing buffer
|
||||||
static uint8_t hci_send_prepared_cmd_packet() {
|
static uint8_t hci_send_prepared_cmd_packet(void) {
|
||||||
btstack_assert(hci_stack->hci_packet_buffer_reserved);
|
btstack_assert(hci_stack->hci_packet_buffer_reserved);
|
||||||
// cache opcode
|
// cache opcode
|
||||||
hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
|
hci_stack->last_cmd_opcode = little_endian_read_16(hci_stack->hci_packet_buffer, 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user