Johann Fischer | 9b0da3b | 2017-07-06 14:01:17 +0200 | [diff] [blame] | 1 | /* composite.h - USB composite device driver relay header */ |
2 | |||||
3 | /* | ||||
4 | * Copyright (c) 2017 PHYTEC Messtechnik GmbH | ||||
5 | * | ||||
6 | * SPDX-License-Identifier: Apache-2.0 | ||||
7 | */ | ||||
8 | |||||
9 | #ifndef __USB_COMPOSITE__ | ||||
10 | #define __USB_COMPOSITE__ | ||||
11 | |||||
12 | #include <usb/usb_device.h> | ||||
13 | |||||
14 | int composite_add_function(struct usb_cfg_data *cfg_data, u8_t if_num); | ||||
15 | |||||
16 | #endif /* __USB_COMPOSITE__ */ |