/*****************************************************************************

Copyright (c) 2006 Analog Devices.  All Rights Reserved.

This software is proprietary and confidential.  By using this software you agree
to the terms of the associated Analog Devices License Agreement.  
******************************************************************************

$File: services_install.c $
$Revision: 1.1 $
$Date: 2008/03/17 14:50:34 $

Project:    Audio codec demonstration
Title:      Install services
Author(s):  Bala
Revised by:
			DW
			SS
Description:
		This file contains functions to setup and configure the USB file I/O. 
			
*********************************************************************************/

#ifndef _USB_SERVICES_H
#define _USB_SERVICES_H



/*********************************************************************
 	Function declaration
 *********************************************************************/
// User defined ISR routines for audio interrupt processing
void InstallUSBdriver(void);
void EnableUSBdriver(void);
u32 PerformUSBIO(ADI_DEV_DEVICE_HANDLE USB_DevHandle);

extern int DACUserISR(ADI_DEV_1D_BUFFER *pArg,unsigned int num_samples);


#endif //#ifndef _USB_SERVICES_H

