blob: 773dd9eac3d910f8c24c7e8cf1fd078a84dc97db [file] [log] [blame]
/*
* Copyright (c) 2018 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
#include <zephyr/sys/printk.h>
#include <zephyr/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");
}