2007-08-27 16:04:32 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2008-04-18 17:05:15 +00:00
|
|
|
* $Id$
|
2007-08-27 16:04:32 +00:00
|
|
|
*
|
2008-05-05 10:32:46 +00:00
|
|
|
* Copyright (C) 2007 by Björn Stenberg
|
2007-08-27 16:04:32 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2007-08-27 16:04:32 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2007-11-22 20:51:00 +00:00
|
|
|
#ifndef USB_STORAGE_H
|
|
|
|
#define USB_STORAGE_H
|
2007-08-27 16:04:32 +00:00
|
|
|
|
2007-11-22 20:51:00 +00:00
|
|
|
#include "usb_ch9.h"
|
2007-08-27 16:04:32 +00:00
|
|
|
|
2008-10-03 22:43:16 +00:00
|
|
|
int usb_storage_request_endpoints(struct usb_class_driver *);
|
2008-04-26 19:02:16 +00:00
|
|
|
int usb_storage_set_first_interface(int interface);
|
|
|
|
int usb_storage_get_config_descriptor(unsigned char *dest,int max_packet_size);
|
|
|
|
void usb_storage_init_connection(void);
|
2008-12-13 14:49:44 +00:00
|
|
|
void usb_storage_disconnect(void);
|
2007-11-22 20:51:00 +00:00
|
|
|
void usb_storage_init(void);
|
2008-10-03 22:43:16 +00:00
|
|
|
void usb_storage_transfer_complete(int ep,int dir,int state,int length);
|
2009-04-18 20:40:50 +00:00
|
|
|
bool usb_storage_control_request(struct usb_ctrlrequest* req, unsigned char* dest);
|
2008-03-10 20:55:24 +00:00
|
|
|
#ifdef HAVE_HOTSWAP
|
|
|
|
void usb_storage_notify_hotswap(int volume,bool inserted);
|
|
|
|
#endif
|
|
|
|
|
2007-11-22 20:51:00 +00:00
|
|
|
#endif
|
2007-08-27 16:04:32 +00:00
|
|
|
|