mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
15 lines
333 B
C
15 lines
333 B
C
/*
|
|
* Copyright (c) 2020-2022 Artinchip Technology Co., Ltd. All rights reserved.
|
|
*
|
|
* Dehuang Wu <dehuang.wu@artinchip.com>
|
|
*/
|
|
|
|
#ifndef _AIC_USB_HOST_H_
|
|
#define _AIC_USB_HOST_H_
|
|
|
|
int usbh_initialize(int id);
|
|
int usbh_get_connect_id(void);
|
|
u32 usbh_msc_read(u32 start_sector, u32 nsect, u8 *buffer);
|
|
|
|
#endif /* _AIC_USB_HOST_H_ */
|