Skip to content
Snippets Groups Projects
Select Git revision
  • 25ab786f54f452cac9c9d10062fcaa4dee9a1b0a
  • master default
  • dev
3 results

EDynamicMenuView.js

Blame
  • ConfigDescriptor.c 6.87 KiB
    /*
                 LUFA Library
         Copyright (C) Dean Camera, 2009.
                  
      dean [at] fourwalledcubicle [dot] com
          www.fourwalledcubicle.com
    */
    
    /*
      Copyright 2009  Dean Camera (dean [at] fourwalledcubicle [dot] com)
    
      Permission to use, copy, modify, and distribute this software
      and its documentation for any purpose and without fee is hereby
      granted, provided that the above copyright notice appear in all
      copies and that both that the copyright notice and this
      permission notice and warranty disclaimer appear in supporting
      documentation, and that the name of the author not be used in
      advertising or publicity pertaining to distribution of the
      software without specific, written prior permission.
    
      The author disclaim all warranties with regard to this
      software, including all implied warranties of merchantability
      and fitness.  In no event shall the author be liable for any
      special, indirect or consequential damages or any damages
      whatsoever resulting from loss of use, data or profits, whether
      in an action of contract, negligence or other tortious action,
      arising out of or in connection with the use or performance of
      this software.
    */
    
    /** \file
     *
     *  USB Device Configuration Descriptor processing routines, to determine the correct pipe configurations
     *  needed to communication with an attached USB device. Descriptors are special  computer-readable structures
     *  which the host requests upon device enumeration, to determine the device's capabilities and functions.
     */
     
    #include "ConfigDescriptor.h"
    
    /** Reads and processes an attached device's descriptors, to determine compatibility and pipe configurations. This
     *  routine will read in the entire configuration descriptor, and configure the hosts pipes to correctly communicate
     *  with compatible devices.
     *
     *  This routine searches for a MSD interface descriptor containing bulk IN and OUT data endpoints.
     *
     *  \return An error code from the \ref MassStorageHost_GetConfigDescriptorDataCodes_t enum.
     */
    uint8_t ProcessConfigurationDescriptor(void)
    {
    	uint8_t  ConfigDescriptorData[512];
    	void*    CurrConfigLocation = ConfigDescriptorData;
    	uint16_t CurrConfigBytesRem;
    	uint8_t  FoundEndpoints     = 0;
    
    	/* Retrieve the entire configuration descriptor into the allocated buffer */
    	switch (USB_Host_GetDeviceConfigDescriptor(1, &CurrConfigBytesRem, ConfigDescriptorData, sizeof(ConfigDescriptorData)))
    	{
    		case HOST_GETCONFIG_Successful:
    			break;
    		case HOST_GETCONFIG_InvalidData:
    			return InvalidConfigDataReturned;
    		case HOST_GETCONFIG_BuffOverflow:
    			return DescriptorTooLarge;
    		default:
    			return ControlError;
    	}
    	
    	/* Get the mass storage interface from the configuration descriptor */
    	if (USB_GetNextDescriptorComp(&CurrConfigBytesRem, &CurrConfigLocation,
    	                              DComp_NextMSInterface) != DESCRIPTOR_SEARCH_COMP_Found)