zephyr/subsys/usb/host/usbh_internal.h
Johann Fischer 7c1ef35027 usb: add initial USB host support
This is initial support. Necessary to test the UHC driver API,
for the USB support test implementations, and upcoming USBIP support.

Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
2022-12-16 13:21:12 +01:00

16 lines
333 B
C

/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_USBH_INTERNAL_H
#define ZEPHYR_INCLUDE_USBH_INTERNAL_H
#include <stdint.h>
#include <zephyr/usb/usbh.h>
int usbh_init_device_intl(struct usbh_contex *const uhs_ctx);
#endif /* ZEPHYR_INCLUDE_USBH_INTERNAL_H */