blob: a265c05c2af74054b983276bb094451945d3072e [file] [log] [blame]
/* This source file is part of the AVR Software Framework 2.0.0 release */
/*This file is prepared for Doxygen automatic documentation generation.*/
/*! \file ******************************************************************
*
* \brief USB identifiers.
*
* This file contains the USB parameters that uniquely identify the USB
* application through descriptor tables.
*
* - Compiler: IAR EWAVR32 and GNU GCC for AVR32
* - Supported devices: All AVR32 devices with a USB module can be used.
* - AppNote:
*
* \author Atmel Corporation: http://www.atmel.com \n
* Support and FAQ: http://support.atmel.no/
*
***************************************************************************/
/* Copyright (c) 2009 Atmel Corporation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. The name of Atmel may not be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* 4. This software may only be redistributed and used in connection with an Atmel
* AVR product.
*
* THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
* EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
*
*/
//_____ I N C L U D E S ____________________________________________________
#include "conf_usb.h"
#if USB_DEVICE_FEATURE == ENABLED
#include "usb_drv.h"
#include "usb_descriptors.h"
#include "usb_standard_request.h"
#include "usb_specific_request.h"
//_____ M A C R O S ________________________________________________________
//_____ D E F I N I T I O N S ______________________________________________
// usb_user_device_descriptor
const S_usb_device_descriptor usb_dev_desc =
{
sizeof(S_usb_device_descriptor),
DEVICE_DESCRIPTOR,
Usb_format_mcu_to_usb_data(16, USB_SPECIFICATION),
DEVICE_CLASS,
DEVICE_SUB_CLASS,
DEVICE_PROTOCOL,
EP_CONTROL_LENGTH,
Usb_format_mcu_to_usb_data(16, VENDOR_ID),
Usb_format_mcu_to_usb_data(16, PRODUCT_ID),
Usb_format_mcu_to_usb_data(16, RELEASE_NUMBER),
MAN_INDEX,
PROD_INDEX,
SN_INDEX,
NB_CONFIGURATION
};
// usb_user_configuration_descriptor FS
const S_usb_user_configuration_descriptor usb_conf_desc_fs =
{
{
sizeof(S_usb_configuration_descriptor),
CONFIGURATION_DESCRIPTOR,
Usb_format_mcu_to_usb_data(16, sizeof(S_usb_user_configuration_descriptor)),
NB_INTERFACE,
CONF_NB,
CONF_INDEX,
CONF_ATTRIBUTES,
MAX_POWER
},
{
sizeof(S_usb_interface_descriptor),
INTERFACE_DESCRIPTOR,
INTERFACE_NB_TEMP,
ALTERNATE_TEMP,
NB_ENDPOINT_TEMP,
INTERFACE_CLASS,
INTERFACE_SUB_CLASS,
INTERFACE_PROTOCOL,
INTERFACE_INDEX_TEMP
},
{
sizeof(S_usb_endpoint_descriptor),
ENDPOINT_DESCRIPTOR,
ENDPOINT_NB_TEMP1,
EP_ATTRIBUTES_TEMP1,
Usb_format_mcu_to_usb_data(16, EP_SIZE_TEMP1),
EP_INTERVAL_TEMP1
},
{
sizeof(S_usb_endpoint_descriptor),
ENDPOINT_DESCRIPTOR,
ENDPOINT_NB_TEMP2,
EP_ATTRIBUTES_TEMP2,
Usb_format_mcu_to_usb_data(16, EP_SIZE_TEMP2),
EP_INTERVAL_TEMP2
}
};
#if (USB_HIGH_SPEED_SUPPORT==ENABLED)
// usb_user_configuration_descriptor HS
const S_usb_user_configuration_descriptor usb_conf_desc_hs =
{
{
sizeof(S_usb_configuration_descriptor),
CONFIGURATION_DESCRIPTOR,
Usb_format_mcu_to_usb_data(16, sizeof(S_usb_user_configuration_descriptor)),
NB_INTERFACE,
CONF_NB,
CONF_INDEX,
CONF_ATTRIBUTES,
MAX_POWER
},
{
sizeof(S_usb_interface_descriptor),
INTERFACE_DESCRIPTOR,
INTERFACE_NB_TEMP,
ALTERNATE_TEMP,
NB_ENDPOINT_TEMP,
INTERFACE_CLASS,
INTERFACE_SUB_CLASS,
INTERFACE_PROTOCOL,
INTERFACE_INDEX_TEMP
},
{
sizeof(S_usb_endpoint_descriptor),
ENDPOINT_DESCRIPTOR,
ENDPOINT_NB_TEMP1,
EP_ATTRIBUTES_TEMP1,
Usb_format_mcu_to_usb_data(16, EP_SIZE_TEMP1_HS),
EP_INTERVAL_TEMP1
},
{
sizeof(S_usb_endpoint_descriptor),
ENDPOINT_DESCRIPTOR,
ENDPOINT_NB_TEMP2,
EP_ATTRIBUTES_TEMP2,
Usb_format_mcu_to_usb_data(16, EP_SIZE_TEMP2_HS),
EP_INTERVAL_TEMP2
}
};
// usb_qualifier_desc FS
const S_usb_device_qualifier_descriptor usb_qualifier_desc =
{
sizeof(S_usb_device_qualifier_descriptor),
DEVICE_QUALIFIER_DESCRIPTOR,
Usb_format_mcu_to_usb_data(16, USB_SPECIFICATION),
DEVICE_CLASS,
DEVICE_SUB_CLASS,
DEVICE_PROTOCOL,
EP_CONTROL_LENGTH,
NB_CONFIGURATION,
0
};
#endif
// usb_user_language_id
const S_usb_language_id usb_user_language_id =
{
sizeof(S_usb_language_id),
STRING_DESCRIPTOR,
Usb_format_mcu_to_usb_data(16, LANGUAGE_ID)
};
// usb_user_manufacturer_string_descriptor
const S_usb_manufacturer_string_descriptor usb_user_manufacturer_string_descriptor =
{
sizeof(S_usb_manufacturer_string_descriptor),
STRING_DESCRIPTOR,
USB_MANUFACTURER_NAME
};
// usb_user_product_string_descriptor
const S_usb_product_string_descriptor usb_user_product_string_descriptor =
{
sizeof(S_usb_product_string_descriptor),
STRING_DESCRIPTOR,
USB_PRODUCT_NAME
};
// usb_user_serial_number
const S_usb_serial_number usb_user_serial_number =
{
sizeof(S_usb_serial_number),
STRING_DESCRIPTOR,
USB_SERIAL_NUMBER
};
#endif // USB_DEVICE_FEATURE == ENABLED