29 lines
956 B
C
29 lines
956 B
C
/*****************************************************************************
|
|
* Module : usb
|
|
* File : usb_dev_wifi.h
|
|
* Author :
|
|
* Function : USB WIFIÇý¶¯µÄһЩ¶¨Òå
|
|
*****************************************************************************/
|
|
#ifndef USB_DEV_WIFI_H
|
|
#define USB_DEV_WIFI_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int32 usb_device_wifi_open(struct usb_device *p_usb_d);
|
|
extern int32 usb_device_wifi_close(struct usb_device *p_usb_d);
|
|
extern int32 usb_device_wifi_auto_tx_null_pkt_disable(struct usb_device *p_usb_d);
|
|
extern int32 usb_device_wifi_auto_tx_null_pkt_enable(struct usb_device *p_usb_d);
|
|
extern int32 usb_device_wifi_write(struct usb_device *p_usb_d, uint8 *buff, uint32 len);
|
|
extern int32 usb_device_wifi_read(struct usb_device *p_usb_d, uint8 *buff, uint32 len);
|
|
extern int32 usb_device_wifi_write_scatter(struct usb_device *p_usb_d, scatter_data *data, int count);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|