<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forums.obdev.at/app.php/feed/topic/7542" />

	<title>Objective Development Forums</title>
	
	<link href="https://forums.obdev.at/index.php" />
	<updated>2012-11-20T02:32:25+02:00</updated>

	<author><name><![CDATA[Objective Development Forums]]></name></author>
	<id>https://forums.obdev.at/app.php/feed/topic/7542</id>

		<entry>
		<author><name><![CDATA[hybridmetta]]></name></author>
		<updated>2012-11-20T02:32:25+02:00</updated>

		<published>2012-11-20T02:32:25+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=7542&amp;p=23687#p23687</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=7542&amp;p=23687#p23687"/>
		<title type="html"><![CDATA[Re: Ethernet over Usb?]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=7542&amp;p=23687#p23687"><![CDATA[
Thank you for your response ulao.<br /><br />I looked into HID only to find there is no network related descriptors. The only alternative for my application is CDC.<br /><br />So i decided to take a shot at this myself and after some digging, i found out that the common solution in situations like this is for an ethernet over usb device to have 2 descriptors: CDC ECM and RNDIS. The first works under linux/mac while the second is Microsoft proprietary solution. <br /> <br />Unfortunately i wasn't so lucky... <br />I needed the device to run under most platforms but right after i wrote the descriptor for ECM, i found out about the bulk-endpoint to interrupt conversion enforcement for usb1.1 devices that my 3.6.6-1 kernel is so fond about...<br /><br />What is funny is that OSX doesn't have any problems with the device and will gladly show a new ethernet connection.<br />I guess it's time to opt for an avr-usb and LUFA.<br /><br />In any case, if someone want's to give CDC-ECM for OSX a shot, this is what i used. I took a bit of inspiration from <a href="http://www.recursion.jp/avrcdc/cdc-232.html" class="postlink">http://www.recursion.jp/avrcdc/cdc-232.html</a><br /><br /><div class="codebox"><p>Code: </p><pre><code>const static PROGMEM char deviceDescr&#91;&#93; = {<br />   /* Device Descriptor - usbcdc11.pdf table 20 */<br />   18,               // 1 byte - Blength - size of this descriptor in bytes<br />   USBDESCR_DEVICE,// 1 byte - BdescriptorType - DEVICE descriptor type<br />   0x10, 0x01,         // 2 byte - BcdUSB - BCD-encoded USB revision number<br />   0x02,            // 1 byte - BdeviceClass - Class code: Please refer to USB specification for interpretation.<br />   0x00,            // 1 byte - BdeviceSubClass - SubClass code: Please refer to USB specification for interpretation.<br />   0,               // 1 byte - BdeviceProtocol - Protocol code: : Please refer to USB specification for interpretation.<br />   8,               // 1 byte - bMaxPacketSize0 - Maximum packet size for Endpoint 0<br />   USB_CFG_VENDOR_ID,   // 2 byte - IdVendor<br />   USB_CFG_DEVICE_ID,   // 2 byte - IdProduct<br />   0x01, 0x01,//USB_CFG_DEVICE_VERSION, // 2 byte - BcdDevice - Device release number<br />   1,               // 1 byte - Imanufacturer - Index of manufacturer string descriptor<br />   2,               // 1 byte - Iproduct - Index of product string descriptor<br />   8,               // 1 byte - IserialNumber<br />   1,//2,               // 1 byte - BnumConfigurations - Number of configurations<br />};<br /><br />static const PROGMEM char configDescrCDCECM&#91;&#93; = {   /* USB configuration descriptor */<br />    9,          /* sizeof(usbDescrConfig): length of descriptor in bytes */<br />    USBDESCR_CONFIG,    /* descriptor type */<br />    80, 0,      /* total length of data returned (including inlined descriptors) */<br />    2,          /* number of interfaces in this configuration */<br />    1,          /* index of this configuration */<br />    4,          /* configuration name string index */<br />#if USB_CFG_IS_SELF_POWERED<br />    (1 &lt;&lt; 7) | USBATTR_SELFPOWER,       /* attributes */<br />#else<br />    (1 &lt;&lt; 7),                           /* attributes */<br />#endif<br />    USB_CFG_MAX_BUS_POWER/2,            /* max USB current in 2mA units */<br /><br />    /* interface descriptor follows inline: */<br />    9,          /* sizeof(usbDescrInterface): length of descriptor in bytes */<br />    USBDESCR_INTERFACE, /* descriptor type */<br />    0,          /* index of this interface */<br />    0,          /* alternate setting for this interface */<br />    USB_CFG_HAVE_INTRIN_ENDPOINT,   /* endpoints excl 0: number of endpoint descriptors to follow */<br />    USB_CFG_INTERFACE_CLASS,<br />    USB_CFG_INTERFACE_SUBCLASS,<br />    USB_CFG_INTERFACE_PROTOCOL,<br />    5,          /* string index for interface */<br /><br />    /* CDC Class-Specific descriptor */<br />    5,           /* sizeof(usbDescrCDC_HeaderFn): length of descriptor in bytes */<br />    0x24,        /* descriptor type */<br />    0,           /* header functional descriptor */<br />    0x10, 0x01,<br /><br />   5,           /* sizeof(usbDescrCDC_UnionFn): length of descriptor in bytes */<br />    0x24,        /* descriptor type */<br />    6,           /* union functional descriptor */<br />    0,           /* CDC_COMM_INTF_ID */<br />    1,           /* CDC_DATA_INTF_ID */<br /><br />    /* Ethernet Networking Functional Descriptor */<br />   13,             // 1 byte - bFunctionLength - Size of this functional descriptor, in bytes.<br />   0x24,            // 1 byte - bDescriptorType - CS_INTERFACE<br />   0x0F,            // 1 byte - bDescriptorSubtype - Ethernet Networking functional descriptor subtype as defined in &#91;USBCDC1.2&#93;<br />   3,               // 1 byte - iMACAddress - index of 48bit Ethernet MAC address string descriptor<br />   0x00,            // 4 byte - bmEthernetStatistics - Indicates which Ethernet statistics functions the device collects.<br />   0x00, 0x00, 0x00,<br />   0xEA, 0x05,         // 2 byte - wMaxSegmentSize - The maximum segment size that the Ethernet device is capable of supporting. (typically 1514 bytes)<br />   0x00, 0x00,         // 2 byte - wNumberMCFilters - Contains the number of multicast filters that can be configured by the host.<br />   0x00,            // 1 byte - bNumberPowerFilters - Contains the number of pattern filters that are available for causing wake-up of the host.<br /><br />    /* Endpoint Descriptor */<br />    7,           /* sizeof(usbDescrEndpoint) */<br />    USBDESCR_ENDPOINT,  /* descriptor type = endpoint */<br />    0x80|USB_CFG_EP3_NUMBER,        /* IN endpoint number */<br />    0x03,        /* attrib: Interrupt endpoint */<br />    8, 0,        /* maximum packet size */<br />    USB_CFG_INTR_POLL_INTERVAL,        /* in ms */<br /><br />   <br />   /* Interface Descriptor  */<br />    9,           /* sizeof(usbDescrInterface): length of descriptor in bytes */<br />    USBDESCR_INTERFACE,           /* descriptor type */<br />    1,           /* index of this interface */<br />    0,           /* alternate setting for this interface */<br />    0,           /* endpoints excl 0: number of endpoint descriptors to follow */<br />    0x0A,        /* Data Interface Class Codes */<br />    0,<br />    0,           /* Data Interface Class Protocol Codes */<br />    0,           /* string index for interface */<br />   <br />    /* Interface Descriptor  */<br />    9,           /* sizeof(usbDescrInterface): length of descriptor in bytes */<br />    USBDESCR_INTERFACE,           /* descriptor type */<br />    1,           /* index of this interface */<br />    1,           /* alternate setting for this interface */<br />    2,           /* endpoints excl 0: number of endpoint descriptors to follow */<br />    0x0A,        /* Data Interface Class Codes */<br />    0,<br />    0,           /* Data Interface Class Protocol Codes */<br />    6,           /* string index for interface */<br /><br />    /* Endpoint Descriptor */<br />    7,           /* sizeof(usbDescrEndpoint) */<br />    USBDESCR_ENDPOINT,  /* descriptor type = endpoint */<br />    0x01,        /* OUT endpoint number 1 */<br />    0x02,        /* attrib: Bulk endpoint */<br />    8, 0,        /* maximum packet size */<br />    0,           /* in ms */<br /><br />    /* Endpoint Descriptor */<br />    7,           /* sizeof(usbDescrEndpoint) */<br />    USBDESCR_ENDPOINT,  /* descriptor type = endpoint */<br />    0x81,        /* IN endpoint number 1 */<br />    0x02,        /* attrib: Bulk endpoint */<br />    8, 0,        /* maximum packet size */<br />    0,           /* in ms */<br />};<br /><br />const static PROGMEM int iMacAddress&#91;&#93; = {// 12 byte - 48bit Ethernet MAC address string descriptor<br />    USB_STRING_DESCRIPTOR_HEADER(12),<br />   '0','1','2','3','4','5','6','7','8','9','A','B',<br />};<br /><br />const static PROGMEM int iProduct&#91;&#93; = {<br />    USB_STRING_DESCRIPTOR_HEADER(12),<br />   'U','S','B','-','E','t','h','e','r','n','e','t',<br />};<br /><br />const static PROGMEM int iManufacturer&#91;&#93; = {<br />    USB_STRING_DESCRIPTOR_HEADER(11),<br />   'H','y','b','r','i','d','m','e','t','t','a',<br />};<br /><br />const static PROGMEM int iSerial&#91;&#93; = {<br />    USB_STRING_DESCRIPTOR_HEADER(8),<br />   '0','0','0','0','0','0','0','1',<br />};<br /><br />const static PROGMEM int iConfiguration&#91;&#93; = {<br />    USB_STRING_DESCRIPTOR_HEADER(26),<br />   'U','S','B',' ','E','t','h','e','r','n','e','t',' ','C','o','n','f','i','g','u','r','a','t','i','o','n',<br />};<br /><br />const static PROGMEM int iInterface&#91;&#93; = {<br />    USB_STRING_DESCRIPTOR_HEADER(13),<br />   'C','o','m','m','u','n','i','c','a','t','i','o','n',<br />};<br /><br />const static PROGMEM int iInterface2&#91;&#93; = {<br />    USB_STRING_DESCRIPTOR_HEADER(20),<br />   'D','a','t','a',' ','I','n','t','e','r','f','a','c','e',' ','C','l','a','s','s',<br />};<br /><br />const PROGMEM char usbDescriptorString0&#91;&#93; = { /* language descriptor */<br />    4,          /* sizeof(usbDescriptorString0): length of descriptor in bytes */<br />    3,          /* descriptor type */<br />    0x09, 0x04, /* language index (0x0409 = US-English) */<br />};<br /></code></pre></div><br /><br /><div class="codebox"><p>Code: </p><pre><code>uchar usbFunctionDescriptor(usbRequest_t *rq)<br />{<br />   usbMsgLen_t len = 0;<br />   switch (rq-&gt;bRequest) {<br />      case USBRQ_GET_DESCRIPTOR:<br />         switch (rq-&gt;wValue.bytes&#91;1&#93;) {<br />            case USBDESCR_DEVICE:<br />               usbMsgPtr = (char *)deviceDescr;<br />               len = sizeof(deviceDescr);<br />               break;<br />            case USBDESCR_CONFIG:<br />               usbMsgPtr = (uchar *)configDescrCDCRNDIS;<br />               len = sizeof(configDescrCDCRNDIS);<br />               break;<br />            case USBDESCR_STRING:<br />               switch (rq-&gt;wValue.bytes&#91;0&#93;) {<br />                  case 1: //iManufacturer<br />                     usbMsgPtr = (uchar *)iManufacturer;<br />                     len = sizeof(iManufacturer);<br />                     break;<br />                  case 2: //iProduct<br />                     usbMsgPtr = (uchar *)iProduct;<br />                     len = sizeof(iProduct);<br />                     break;<br />                  case 3: //iMacAddress<br />                     usbMsgPtr = (uchar *)iMacAddress;<br />                     len = sizeof(iMacAddress);<br />                     break;<br />                  case 4: //iConfiguration<br />                     usbMsgPtr = (uchar *)iConfiguration;<br />                     len = sizeof(iConfiguration);<br />                     break;<br />                  case 5: //iInterface<br />                     usbMsgPtr = (uchar *)iInterface;<br />                     len = sizeof(iInterface);<br />                     break;<br />                  case 6: //iInterface2<br />                     usbMsgPtr = (uchar *)iInterface2;<br />                     len = sizeof(iInterface2);<br />                     break;<br />                  case 8: //iSerial<br />                     usbMsgPtr = (uchar *)iSerial;<br />                     len = sizeof(iSerial);<br />                     break;<br />                  case 0:<br />                     usbMsgPtr = (uchar *)(usbDescriptorString0);<br />                     len = sizeof(usbDescriptorString0);<br />                     break;<br />                  default:<br />                     break;<br />               }<br />               break;<br />            default:<br />               break;<br />         }<br />         break;<br />      default:<br />         break;<br />   }<br />   return len;<br />}<br /></code></pre></div><br /><br />usbconfig.h<br /><div class="codebox"><p>Code: </p><pre><code>/* Name: usbconfig.h<br /> * Project: V-USB, virtual USB port for Atmel's(r) AVR(r) microcontrollers<br /> * Author: Christian Starkjohann<br /> * Creation Date: 2005-04-01<br /> * Tabsize: 4<br /> * Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH<br /> * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)<br /> * This Revision: $Id: usbconfig-prototype.h 785 2010-05-30 17:57:07Z cs $<br /> */<br /><br />#ifndef __usbconfig_h_included__<br />#define __usbconfig_h_included__<br /><br />/*<br />General Description:<br />This file is an example configuration (with inline documentation) for the USB<br />driver. It configures V-USB for USB D+ connected to Port D bit 2 (which is<br />also hardware interrupt 0 on many devices) and USB D- to Port D bit 4. You may<br />wire the lines to any other port, as long as D+ is also wired to INT0 (or any<br />other hardware interrupt, as long as it is the highest level interrupt, see<br />section at the end of this file).<br />+ To create your own usbconfig.h file, copy this file to your project's<br />+ firmware source directory) and rename it to &quot;usbconfig.h&quot;.<br />+ Then edit it accordingly.<br />*/<br /><br />/* ---------------------------- Hardware Config ---------------------------- */<br /><br />#define USB_CFG_IOPORTNAME      D<br />/* This is the port where the USB bus is connected. When you configure it to<br /> * &quot;B&quot;, the registers PORTB, PINB and DDRB will be used.<br /> */<br />#define USB_CFG_DMINUS_BIT      3<br />/* This is the bit number in USB_CFG_IOPORT where the USB D- line is connected.<br /> * This may be any bit in the port.<br /> */<br />#define USB_CFG_DPLUS_BIT       2<br />/* This is the bit number in USB_CFG_IOPORT where the USB D+ line is connected.<br /> * This may be any bit in the port. Please note that D+ must also be connected<br /> * to interrupt pin INT0! &#91;You can also use other interrupts, see section<br /> * &quot;Optional MCU Description&quot; below, or you can connect D- to the interrupt, as<br /> * it is required if you use the USB_COUNT_SOF feature. If you use D- for the<br /> * interrupt, the USB interrupt will also be triggered at Start-Of-Frame<br /> * markers every millisecond.&#93;<br /> */<br />#define USB_CFG_CLOCK_KHZ       (F_CPU/1000)<br />/* Clock rate of the AVR in kHz. Legal values are 12000, 12800, 15000, 16000,<br /> * 16500, 18000 and 20000. The 12.8 MHz and 16.5 MHz versions of the code<br /> * require no crystal, they tolerate +/- 1% deviation from the nominal<br /> * frequency. All other rates require a precision of 2000 ppm and thus a<br /> * crystal!<br /> * Since F_CPU should be defined to your actual clock rate anyway, you should<br /> * not need to modify this setting.<br /> */<br />#if USB_CFG_CLOCK_KHZ==18000<br />#define USB_CFG_CHECK_CRC       1<br />#else<br />#define USB_CFG_CHECK_CRC       0<br />#endif<br /><br />/* Define this to 1 if you want that the driver checks integrity of incoming<br /> * data packets (CRC checks). CRC checks cost quite a bit of code size and are<br /> * currently only available for 18 MHz crystal clock. You must choose<br /> * USB_CFG_CLOCK_KHZ = 18000 if you enable this option.<br /> */<br /><br />/* ----------------------- Optional Hardware Config ------------------------ */<br /><br />/* #define USB_CFG_PULLUP_IOPORTNAME   D */<br />/* If you connect the 1.5k pullup resistor from D- to a port pin instead of<br /> * V+, you can connect and disconnect the device from firmware by calling<br /> * the macros usbDeviceConnect() and usbDeviceDisconnect() (see usbdrv.h).<br /> * This constant defines the port on which the pullup resistor is connected.<br /> */<br />/* #define USB_CFG_PULLUP_BIT          4 */<br />/* This constant defines the bit number in USB_CFG_PULLUP_IOPORT (defined<br /> * above) where the 1.5k pullup resistor is connected. See description<br /> * above for details.<br /> */<br /><br />/* --------------------------- Functional Range ---------------------------- */<br /><br />#define USB_CFG_HAVE_INTRIN_ENDPOINT    1<br />/* Define this to 1 if you want to compile a version with two endpoints: The<br /> * default control endpoint 0 and an interrupt-in endpoint (any other endpoint<br /> * number).<br /> */<br />#define USB_CFG_HAVE_INTRIN_ENDPOINT3   1<br />/* Define this to 1 if you want to compile a version with three endpoints: The<br /> * default control endpoint 0, an interrupt-in endpoint 3 (or the number<br /> * configured below) and a catch-all default interrupt-in endpoint as above.<br /> * You must also define USB_CFG_HAVE_INTRIN_ENDPOINT to 1 for this feature.<br /> */<br />#define USB_CFG_EP3_NUMBER              3<br />/* If the so-called endpoint 3 is used, it can now be configured to any other<br /> * endpoint number (except 0) with this macro. Default if undefined is 3.<br /> */<br />/* #define USB_INITIAL_DATATOKEN           USBPID_DATA1 */<br />/* The above macro defines the startup condition for data toggling on the<br /> * interrupt/bulk endpoints 1 and 3. Defaults to USBPID_DATA1.<br /> * Since the token is toggled BEFORE sending any data, the first packet is<br /> * sent with the oposite value of this configuration!<br /> */<br />#define USB_CFG_IMPLEMENT_HALT          0<br />/* Define this to 1 if you also want to implement the ENDPOINT_HALT feature<br /> * for endpoint 1 (interrupt endpoint). Although you may not need this feature,<br /> * it is required by the standard. We have made it a config option because it<br /> * bloats the code considerably.<br /> */<br />#define USB_CFG_SUPPRESS_INTR_CODE      0<br />/* Define this to 1 if you want to declare interrupt-in endpoints, but don't<br /> * want to send any data over them. If this macro is defined to 1, functions<br /> * usbSetInterrupt() and usbSetInterrupt3() are omitted. This is useful if<br /> * you need the interrupt-in endpoints in order to comply to an interface<br /> * (e.g. HID), but never want to send any data. This option saves a couple<br /> * of bytes in flash memory and the transmit buffers in RAM.<br /> */<br />#define USB_CFG_INTR_POLL_INTERVAL      255<br />/* If you compile a version with endpoint 1 (interrupt-in), this is the poll<br /> * interval. The value is in milliseconds and must not be less than 10 ms for<br /> * low speed devices.<br /> */<br />#define USB_CFG_IS_SELF_POWERED         0<br />/* Define this to 1 if the device has its own power supply. Set it to 0 if the<br /> * device is powered from the USB bus.<br /> */<br />#define USB_CFG_MAX_BUS_POWER           100<br />/* Set this variable to the maximum USB bus power consumption of your device.<br /> * The value is in milliamperes. &#91;It will be divided by two since USB<br /> * communicates power requirements in units of 2 mA.&#93;<br /> */<br />#define USB_CFG_IMPLEMENT_FN_WRITE      1<br />/* Set this to 1 if you want usbFunctionWrite() to be called for control-out<br /> * transfers. Set it to 0 if you don't need it and want to save a couple of<br /> * bytes.<br /> */<br />#define USB_CFG_IMPLEMENT_FN_READ       1<br />/* Set this to 1 if you need to send control replies which are generated<br /> * &quot;on the fly&quot; when usbFunctionRead() is called. If you only want to send<br /> * data from a static buffer, set it to 0 and return the data from<br /> * usbFunctionSetup(). This saves a couple of bytes.<br /> */<br />#define USB_CFG_IMPLEMENT_FN_WRITEOUT   1<br />/* Define this to 1 if you want to use interrupt-out (or bulk out) endpoints.<br /> * You must implement the function usbFunctionWriteOut() which receives all<br /> * interrupt/bulk data sent to any endpoint other than 0. The endpoint number<br /> * can be found in 'usbRxToken'.<br /> */<br />#define USB_CFG_HAVE_FLOWCONTROL        1<br />/* Define this to 1 if you want flowcontrol over USB data. See the definition<br /> * of the macros usbDisableAllRequests() and usbEnableAllRequests() in<br /> * usbdrv.h.<br /> */<br />#define USB_CFG_DRIVER_FLASH_PAGE       0<br />/* If the device has more than 64 kBytes of flash, define this to the 64 k page<br /> * where the driver's constants (descriptors) are located. Or in other words:<br /> * Define this to 1 for boot loaders on the ATMega128.<br /> */<br />#define USB_CFG_LONG_TRANSFERS          0<br />/* Define this to 1 if you want to send/receive blocks of more than 254 bytes<br /> * in a single control-in or control-out transfer. Note that the capability<br /> * for long transfers increases the driver size.<br /> */<br />/* #define USB_RX_USER_HOOK(data, len)     if(usbRxToken == (uchar)USBPID_SETUP) blinkLED(); */<br />/* This macro is a hook if you want to do unconventional things. If it is<br /> * defined, it's inserted at the beginning of received message processing.<br /> * If you eat the received message and don't want default processing to<br /> * proceed, do a return after doing your things. One possible application<br /> * (besides debugging) is to flash a status LED on each packet.<br /> */<br />/* #define USB_RESET_HOOK(resetStarts)     if(!resetStarts){hadUsbReset();} */<br />/* This macro is a hook if you need to know when an USB RESET occurs. It has<br /> * one parameter which distinguishes between the start of RESET state and its<br /> * end.<br /> */<br />/* #define USB_SET_ADDRESS_HOOK()              hadAddressAssigned(); */<br />/* This macro (if defined) is executed when a USB SET_ADDRESS request was<br /> * received.<br /> */<br />#define USB_COUNT_SOF                   0<br />/* define this macro to 1 if you need the global variable &quot;usbSofCount&quot; which<br /> * counts SOF packets. This feature requires that the hardware interrupt is<br /> * connected to D- instead of D+.<br /> */<br />/* #ifdef __ASSEMBLER__<br /> * macro myAssemblerMacro<br /> *     in      YL, TCNT0<br /> *     sts     timer0Snapshot, YL<br /> *     endm<br /> * #endif<br /> * #define USB_SOF_HOOK                    myAssemblerMacro<br /> * This macro (if defined) is executed in the assembler module when a<br /> * Start Of Frame condition is detected. It is recommended to define it to<br /> * the name of an assembler macro which is defined here as well so that more<br /> * than one assembler instruction can be used. The macro may use the register<br /> * YL and modify SREG. If it lasts longer than a couple of cycles, USB messages<br /> * immediately after an SOF pulse may be lost and must be retried by the host.<br /> * What can you do with this hook? Since the SOF signal occurs exactly every<br /> * 1 ms (unless the host is in sleep mode), you can use it to tune OSCCAL in<br /> * designs running on the internal RC oscillator.<br /> * Please note that Start Of Frame detection works only if D- is wired to the<br /> * interrupt, not D+. THIS IS DIFFERENT THAN MOST EXAMPLES!<br /> */<br />#define USB_CFG_CHECK_DATA_TOGGLING     0<br />/* define this macro to 1 if you want to filter out duplicate data packets<br /> * sent by the host. Duplicates occur only as a consequence of communication<br /> * errors, when the host does not receive an ACK. Please note that you need to<br /> * implement the filtering yourself in usbFunctionWriteOut() and<br /> * usbFunctionWrite(). Use the global usbCurrentDataToken and a static variable<br /> * for each control- and out-endpoint to check for duplicate packets.<br /> */<br />#if USB_CFG_CLOCK_KHZ==16500 || USB_CFG_CLOCK_KHZ==12800<br />#define USB_CFG_HAVE_MEASURE_FRAME_LENGTH   1<br />#include &quot;osccal.h&quot;<br />#else<br />#define USB_CFG_HAVE_MEASURE_FRAME_LENGTH   0<br />#endif<br />/* define this macro to 1 if you want the function usbMeasureFrameLength()<br /> * compiled in. This function can be used to calibrate the AVR's RC oscillator.<br /> */<br />#define USB_USE_FAST_CRC                0<br />/* The assembler module has two implementations for the CRC algorithm. One is<br /> * faster, the other is smaller. This CRC routine is only used for transmitted<br /> * messages where timing is not critical. The faster routine needs 31 cycles<br /> * per byte while the smaller one needs 61 to 69 cycles. The faster routine<br /> * may be worth the 32 bytes bigger code size if you transmit lots of data and<br /> * run the AVR close to its limit.<br /> */<br /><br />/* -------------------------- Device Description --------------------------- */<br /><br />#define  USB_CFG_VENDOR_ID       0xc0, 0x16 /* = 0x16c0 = 5824 = voti.nl */<br />/* USB vendor ID for the device, low byte first. If you have registered your<br /> * own Vendor ID, define it here. Otherwise you may use one of obdev's free<br /> * shared VID/PID pairs. Be sure to read USB-IDs-for-free.txt for rules!<br /> * *** IMPORTANT NOTE ***<br /> * This template uses obdev's shared VID/PID pair for Vendor Class devices<br /> * with libusb: 0x16c0/0x5dc.  Use this VID/PID pair ONLY if you understand<br /> * the implications!<br /> */<br />#define  USB_CFG_DEVICE_ID       0xe1, 0x05 /* = 0x05e1 = 1505 */<br />/* This is the ID of the product, low byte first. It is interpreted in the<br /> * scope of the vendor ID. If you have registered your own VID with usb.org<br /> * or if you have licensed a PID from somebody else, define it here. Otherwise<br /> * you may use one of obdev's free shared VID/PID pairs. See the file<br /> * USB-IDs-for-free.txt for details!<br /> * *** IMPORTANT NOTE ***<br /> * This template uses obdev's shared VID/PID pair for Vendor Class devices<br /> * with libusb: 0x16c0/0x5dc.  Use this VID/PID pair ONLY if you understand<br /> * the implications!<br /> */<br />#define USB_CFG_DEVICE_VERSION  0x00, 0x01<br />/* Version number of the device: Minor number first, then major number.<br /> */<br />#define USB_CFG_VENDOR_NAME     'H' ,'y' ,'b' ,'r' ,'i' ,'d' ,'m' ,'e' ,'t' ,'t' ,'a'<br />#define USB_CFG_VENDOR_NAME_LEN 11<br />/* These two values define the vendor name returned by the USB device. The name<br /> * must be given as a list of characters under single quotes. The characters<br /> * are interpreted as Unicode (UTF-16) entities.<br /> * If you don't want a vendor name string, undefine these macros.<br /> * ALWAYS define a vendor name containing your Internet domain name if you use<br /> * obdev's free shared VID/PID pair. See the file USB-IDs-for-free.txt for<br /> * details.<br /> */<br />#define USB_CFG_DEVICE_NAME     'U', 'S', 'B', '-', 'E', 't', 'h', 'e' ,'r' ,'n' ,'e' ,'t'<br />#define USB_CFG_DEVICE_NAME_LEN 12<br />/* Same as above for the device name. If you don't want a device name, undefine<br /> * the macros. See the file USB-IDs-for-free.txt before you assign a name if<br /> * you use a shared VID/PID.<br /> */<br />/*#define USB_CFG_SERIAL_NUMBER   'N', 'o', 'n', 'e' */<br />/*#define USB_CFG_SERIAL_NUMBER_LEN   0 */<br />/* Same as above for the serial number. If you don't want a serial number,<br /> * undefine the macros.<br /> * It may be useful to provide the serial number through other means than at<br /> * compile time. See the section about descriptor properties below for how<br /> * to fine tune control over USB descriptors such as the string descriptor<br /> * for the serial number.<br /> */<br />#define USB_CFG_DEVICE_CLASS        2    /* set to 0 if deferred to interface */<br />#define USB_CFG_DEVICE_SUBCLASS     0<br />/* See USB specification if you want to conform to an existing device class.<br /> * Class 0xff is &quot;vendor specific&quot;.<br /> */<br />#define USB_CFG_INTERFACE_CLASS     2       /* Communications Interface Class */<br />#define USB_CFG_INTERFACE_SUBCLASS  6       /* Ethernet Networking Control Model */<br />#define USB_CFG_INTERFACE_PROTOCOL  0       /* No class specific protocol required */<br />/* See USB specification if you want to conform to an existing device class or<br /> * protocol. The following classes must be set at interface level:<br /> * HID class is 3, no subclass and protocol required (but may be useful!)<br /> * CDC class is 2, use subclass 2 and protocol 1 for ACM<br /> */<br />/* #define USB_CFG_HID_REPORT_DESCRIPTOR_LENGTH    42 */<br />/* Define this to the length of the HID report descriptor, if you implement<br /> * an HID device. Otherwise don't define it or define it to 0.<br /> * If you use this define, you must add a PROGMEM character array named<br /> * &quot;usbHidReportDescriptor&quot; to your code which contains the report descriptor.<br /> * Don't forget to keep the array and this define in sync!<br /> */<br /><br />/* #define USB_PUBLIC static */<br />/* Use the define above if you #include usbdrv.c instead of linking against it.<br /> * This technique saves a couple of bytes in flash memory.<br /> */<br /><br />/* ------------------- Fine Control over USB Descriptors ------------------- */<br />/* If you don't want to use the driver's default USB descriptors, you can<br /> * provide our own. These can be provided as (1) fixed length static data in<br /> * flash memory, (2) fixed length static data in RAM or (3) dynamically at<br /> * runtime in the function usbFunctionDescriptor(). See usbdrv.h for more<br /> * information about this function.<br /> * Descriptor handling is configured through the descriptor's properties. If<br /> * no properties are defined or if they are 0, the default descriptor is used.<br /> * Possible properties are:<br /> *   + USB_PROP_IS_DYNAMIC: The data for the descriptor should be fetched<br /> *     at runtime via usbFunctionDescriptor(). If the usbMsgPtr mechanism is<br /> *     used, the data is in FLASH by default. Add property USB_PROP_IS_RAM if<br /> *     you want RAM pointers.<br /> *   + USB_PROP_IS_RAM: The data returned by usbFunctionDescriptor() or found<br /> *     in static memory is in RAM, not in flash memory.<br /> *   + USB_PROP_LENGTH(len): If the data is in static memory (RAM or flash),<br /> *     the driver must know the descriptor's length. The descriptor itself is<br /> *     found at the address of a well known identifier (see below).<br /> * List of static descriptor names (must be declared PROGMEM if in flash):<br /> *   char usbDescriptorDevice&#91;&#93;;<br /> *   char usbDescriptorConfiguration&#91;&#93;;<br /> *   char usbDescriptorHidReport&#91;&#93;;<br /> *   char usbDescriptorString0&#91;&#93;;<br /> *   int usbDescriptorStringVendor&#91;&#93;;<br /> *   int usbDescriptorStringDevice&#91;&#93;;<br /> *   int usbDescriptorStringSerialNumber&#91;&#93;;<br /> * Other descriptors can't be provided statically, they must be provided<br /> * dynamically at runtime.<br /> *<br /> * Descriptor properties are or-ed or added together, e.g.:<br /> * #define USB_CFG_DESCR_PROPS_DEVICE   (USB_PROP_IS_RAM | USB_PROP_LENGTH(18))<br /> *<br /> * The following descriptors are defined:<br /> *   USB_CFG_DESCR_PROPS_DEVICE<br /> *   USB_CFG_DESCR_PROPS_CONFIGURATION<br /> *   USB_CFG_DESCR_PROPS_STRINGS<br /> *   USB_CFG_DESCR_PROPS_STRING_0<br /> *   USB_CFG_DESCR_PROPS_STRING_VENDOR<br /> *   USB_CFG_DESCR_PROPS_STRING_PRODUCT<br /> *   USB_CFG_DESCR_PROPS_STRING_SERIAL_NUMBER<br /> *   USB_CFG_DESCR_PROPS_HID<br /> *   USB_CFG_DESCR_PROPS_HID_REPORT<br /> *   USB_CFG_DESCR_PROPS_UNKNOWN (for all descriptors not handled by the driver)<br /> *<br /> * Note about string descriptors: String descriptors are not just strings, they<br /> * are Unicode strings prefixed with a 2 byte header. Example:<br /> * int  serialNumberDescriptor&#91;&#93; = {<br /> *     USB_STRING_DESCRIPTOR_HEADER(6),<br /> *     'S', 'e', 'r', 'i', 'a', 'l'<br /> * };<br /> */<br /><br />#define USB_CFG_DESCR_PROPS_DEVICE                  USB_PROP_IS_DYNAMIC//0<br />#define USB_CFG_DESCR_PROPS_CONFIGURATION           USB_PROP_IS_DYNAMIC<br />#define USB_CFG_DESCR_PROPS_STRINGS                 USB_PROP_IS_DYNAMIC//0<br />#define USB_CFG_DESCR_PROPS_STRING_0                USB_PROP_IS_DYNAMIC//0<br />#define USB_CFG_DESCR_PROPS_STRING_VENDOR           USB_PROP_IS_DYNAMIC//0<br />#define USB_CFG_DESCR_PROPS_STRING_PRODUCT          USB_PROP_IS_DYNAMIC//0<br />#define USB_CFG_DESCR_PROPS_STRING_SERIAL_NUMBER    USB_PROP_IS_DYNAMIC//0<br />#define USB_CFG_DESCR_PROPS_HID                     0<br />#define USB_CFG_DESCR_PROPS_HID_REPORT              0<br />#define USB_CFG_DESCR_PROPS_UNKNOWN                 0<br /><br />/* ----------------------- Optional MCU Description ------------------------ */<br /><br />/* The following configurations have working defaults in usbdrv.h. You<br /> * usually don't need to set them explicitly. Only if you want to run<br /> * the driver on a device which is not yet supported or with a compiler<br /> * which is not fully supported (such as IAR C) or if you use a differnt<br /> * interrupt than INT0, you may have to define some of these.<br /> */<br />/* #define USB_INTR_CFG            MCUCR */<br />/* #define USB_INTR_CFG_SET        ((1 &lt;&lt; ISC00) | (1 &lt;&lt; ISC01)) */<br />/* #define USB_INTR_CFG_CLR        0 */<br />/* #define USB_INTR_ENABLE         GIMSK */<br />/* #define USB_INTR_ENABLE_BIT     INT0 */<br />/* #define USB_INTR_PENDING        GIFR */<br />/* #define USB_INTR_PENDING_BIT    INTF0 */<br />/* #define USB_INTR_VECTOR         INT0_vect */<br /><br />#endif /* __usbconfig_h_included__ */<br /><br /></code></pre></div><br /><br />OSX will trigger usbFunctionSetup(). Linux won't. Windows laughed at the device  <img class="smilies" src="./../../../images/smilies/icon_lol.gif" alt=":lol:" title="Laughing" /><br /><br />In any case, congratulations for the amazing library that let my iPad receive midi messages from an atmega8 connected to a camera connection kit <img class="smilies" src="./../../../images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy" /><p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=7866">hybridmetta</a> — Tue Nov 20, 2012 2:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ulao]]></name></author>
		<updated>2012-11-10T06:16:59+02:00</updated>

		<published>2012-11-10T06:16:59+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=7542&amp;p=23518#p23518</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=7542&amp;p=23518#p23518"/>
		<title type="html"><![CDATA[Re: Ethernet over Usb?]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=7542&amp;p=23518#p23518"><![CDATA[
I wonder if HID over I2C may do it?<br /><br />Also I know VMware has a VMBus HID mini port virtual nic. Not sure about making a descriptor to communicate with it though. Did you look at the HID Descriptor Tool? Maybe there is a HID network virtual driver.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=1281">ulao</a> — Sat Nov 10, 2012 6:16 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[hybridmetta]]></name></author>
		<updated>2012-11-09T22:51:30+02:00</updated>

		<published>2012-11-09T22:51:30+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=7542&amp;p=23513#p23513</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=7542&amp;p=23513#p23513"/>
		<title type="html"><![CDATA[Ethernet over Usb?]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=7542&amp;p=23513#p23513"><![CDATA[
Hello everyone.<br /><br />I've been thinking about the possibility of using v-usb as a tiny webserver capable of receiving and sending data to an avr. Anyone ever tried creating the descriptors for ethernet over usb? Is it even possible? I glanced over this document but can't quite wrap my brain around it <a href="http://www.usb.org/developers/devclass_docs/CDC_EEM10.pdf" class="postlink">http://www.usb.org/developers/devclass_docs/CDC_EEM10.pdf</a><br /><br />I suppose a working TCP/IP stack (maybe <a href="http://code.google.com/p/uhttpd-avr/" class="postlink">http://code.google.com/p/uhttpd-avr/</a> or <a href="http://code.google.com/p/avr-uip/" class="postlink">http://code.google.com/p/avr-uip/</a>?) and some kind of flash storage for the webserver files would be needed.<br /><br />Has anyone tried to do something like this?<br /><br />Thanks<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=7866">hybridmetta</a> — Fri Nov 09, 2012 10:51 pm</p><hr />
]]></content>
	</entry>
	</feed>
