mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
21 lines
607 B
C
21 lines
607 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2023-2024, ArtInChip Technology Co., Ltd
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*
|
||
|
|
* Authors: senye Liang <senye.liang@artinchip.com>
|
||
|
|
*/
|
||
|
|
#ifndef __COMPOSITE_TEMPLATE_H_
|
||
|
|
#define __COMPOSITE_TEMPLATE_H_
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
void usbd_comp_func_register(const uint8_t *desc,
|
||
|
|
void (*event_handler)(uint8_t event),
|
||
|
|
int (*usbd_comp_class_init)(uint8_t *ep_table, void *data),
|
||
|
|
void *data);
|
||
|
|
extern void usbd_comp_func_release(const uint8_t *desc, void *data);
|
||
|
|
extern bool usbd_compsite_is_inited(void);
|
||
|
|
|
||
|
|
#endif
|