Lines Matching full:hci
1 /* userchan.c - HCI User Channel based Bluetooth driver */
32 #include <zephyr/bluetooth/hci.h>
99 * @brief Decode the length of an HCI H4 packet
101 * @param buf Pointer to a HCI packet buffer
102 * @return Length of the HCI packet in bytes, zero if no valid packet found.
210 LOG_ERR("HCI Packet type is invalid, length could not be decoded"); in rx_thread()
215 LOG_ERR("Decoded HCI packet length (%d bytes) is greater " in rx_thread()
338 LOG_DBG("hci%d", bt_dev_index); in uc_open()
340 LOG_DBG("hci %s:%d", ip_addr, port); in uc_open()
363 .name = "HCI User Channel",
382 if (strncmp(&argv[offset], "hci", 3) == 0 && strlen(&argv[offset]) >= 4) { in cmd_bt_dev_found()
390 "hci idx must be within range 0 to 65536.\n"); in cmd_bt_dev_found()
395 "hci tcp server is out of range.\n"); in cmd_bt_dev_found()
401 "hci tcp server is incorrect.\n"); in cmd_bt_dev_found()
405 "An hci interface or hci tcp server is expected.\n", in cmd_bt_dev_found()
423 "A local HCI device to be used for Bluetooth (e.g. hci0) " in add_btuserchan_arg()
424 "or an HCI TCP Server (e.g. 127.0.0.1:9000)"}, in add_btuserchan_arg()
435 "Specify either a local hci interface --bt-dev=hciN\n" in btuserchan_check_arg()
436 "or a valid hci tcp server --bt-dev=ip_address:port\n"); in btuserchan_check_arg()