1 /* 2 * Copyright (c) 2019 PHYTEC Messtechnik GmbH 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_USB_TRANSFER_H_ 8 #define ZEPHYR_USB_TRANSFER_H_ 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 /** 15 * @brief Initialize USB transfer data 16 * 17 * @return 0 on success, negative errno code on fail. 18 */ 19 int usb_transfer_init(void); 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 #endif /* ZEPHYR_USB_TRANSFER_H_ */ 26