| /* | |
| * Copyright (c) 2018 Intel Corporation | |
| * | |
| * SPDX-License-Identifier: Apache-2.0 | |
| */ | |
| #include <zephyr.h> | |
| #include <sys/printk.h> | |
| #include <usb/usb_device.h> | |
| void main(void) | |
| { | |
| int ret; | |
| ret = usb_enable(NULL); | |
| if (ret != 0) { | |
| printk("Failed to enable USB"); | |
| return; | |
| } | |
| printk("Bluetooth over USB sample\n"); | |
| } |