mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 22:46:21 +00:00
Convert code to use u{8,16,32,64}_t and s{8,16,32,64}_t instead of C99 integer types. Jira: ZEP-2051 Change-Id: I8f57a17f78e674aca5400f005db8975c9f9e150e Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
18 lines
618 B
C
18 lines
618 B
C
/*
|
|
* Copyright (c) 2016 Nordic Semiconductor ASA
|
|
* Copyright (c) 2016 Vinayak Kariappa Chettimada
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _HCI_CONTROLLER_H_
|
|
#define _HCI_CONTROLLER_H_
|
|
|
|
struct net_buf *hci_cmd_handle(struct net_buf *cmd);
|
|
int hci_acl_handle(struct net_buf *acl);
|
|
void hci_evt_encode(struct radio_pdu_node_rx *node_rx, struct net_buf *buf);
|
|
void hci_acl_encode(struct radio_pdu_node_rx *node_rx, struct net_buf *buf);
|
|
void hci_num_cmplt_encode(struct net_buf *buf, u16_t handle, u8_t num);
|
|
bool hci_evt_is_discardable(struct radio_pdu_node_rx *node_rx);
|
|
#endif /* _HCI_CONTROLLER_H_ */
|