/* * Copyright (c) 2020 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #include #include #include int main(void) { int ret; ret = usb_enable(NULL); if (ret != 0) { printk("Failed to enable USB"); return 0; } printk("Bluetooth H:4 over USB sample\n"); return 0; }