<?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/3246" />

	<title>Objective Development Forums</title>
	
	<link href="https://forums.obdev.at/index.php" />
	<updated>2010-10-11T16:59:34+02:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2010-10-11T16:59:34+02:00</updated>

		<published>2010-10-11T16:59:34+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3246&amp;p=16185#p16185</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3246&amp;p=16185#p16185"/>
		<title type="html"><![CDATA[Re: ATtiny and HIDkeys]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3246&amp;p=16185#p16185"><![CDATA[
hI THESE IS ROHIT , <br />COULD U PLS HELP ME IN KNOWING , LETS SAY IF I SELECTS A PROJECT FROM OBDEV SIGHT THN EVERYTHING IS AVAILABE THN , WHT I SHOULD KEEP IN ATTINY FLASH AND EEPROM , I WANTED TO KNOW THT STEPS,PLS CLEARLY TEELL THT STEPS THT 1ST HEX FILE AND THN WR THT NEEDS TO IN FLSH  AND WHT IN EEPROM , ALSO WHT CHANGES IN PC SIDE PLSSSSSSSSSS, I NEED YR HELP , AS IM DOING AS MY COLLEGE PROJECT , I M RUNNING OUT OF TIME<p>Statistics: Posted by Guest — Mon Oct 11, 2010 4:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2009-09-14T08:36:14+02:00</updated>

		<published>2009-09-14T08:36:14+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3246&amp;p=10940#p10940</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3246&amp;p=10940#p10940"/>
		<title type="html"><![CDATA[Re: ATtiny and HIDkeys]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3246&amp;p=10940#p10940"><![CDATA[
I'll make those edits and it involves an ATtiny461. I'll have a look at your suggestions <img class="smilies" src="./../../../images/smilies/icon_smile.gif" alt=":)" title="Smile" /><p>Statistics: Posted by Guest — Mon Sep 14, 2009 8:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[maxi]]></name></author>
		<updated>2009-09-11T14:18:44+02:00</updated>

		<published>2009-09-11T14:18:44+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3246&amp;p=10918#p10918</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3246&amp;p=10918#p10918"/>
		<title type="html"><![CDATA[Re: ATtiny and HIDkeys]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3246&amp;p=10918#p10918"><![CDATA[
To begin with your code is difficult to read all flush to the left like that, I suuggest you edit your post and include 'code tags' eg:<br /><div class="codebox"><p>Code: </p><pre><code>&#91;CODE&#93;Code goes here&#91;/CODE&#93;<br /></code></pre></div><br />Also you do not say which ATtiny you are using, my first guess might be pin configuration but there is no way of knowing without the part no.<br />A schematic would also be helpful here. I did however spot one obvious error in usbconfig.h<br /><div class="codebox"><p>Code: </p><pre><code>#define USB_CFG_VENDOR_NAME 'Y', 'P', '-', 'E', 'n', 'g', 'i', 'n', 'e', 'e', 'r', 'i', 'n', 'g'<br />#define USB_CFG_VENDOR_NAME_LEN 15<br /></code></pre></div><br />I count 14.<br /><br />This line also gives me cause for concern, which is the true clock speed?<br /><div class="codebox"><p>Code: </p><pre><code>#define F_CPU 12000000L /* evaluation board runs on 4MHz */<br /></code></pre></div><p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=2570">maxi</a> — Fri Sep 11, 2009 2:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2009-09-11T12:32:50+02:00</updated>

		<published>2009-09-11T12:32:50+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3246&amp;p=10917#p10917</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3246&amp;p=10917#p10917"/>
		<title type="html"><![CDATA[ATtiny and HIDkeys]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3246&amp;p=10917#p10917"><![CDATA[
Hello,<br /><br />I was trying to make my own version of the HIDkeys project with only 2 keys and an ATtiny microcontroller instead of an ATmega microcontroller. For this I have rewritten/modified part of the HIDkeys main.c code and usbconfig.h code, the odddebug and usbdriver files are untouched and exactly as they are provided by objective development.<br />the resulting code is:<br /><br />/* main.c  */<br /><br />#define F_CPU   12000000L    /* evaluation board runs on 4MHz */<br /><br />#include &lt;avr/io.h&gt;<br />#include &lt;avr/interrupt.h&gt;<br />#include &lt;avr/pgmspace.h&gt;<br />#include &lt;avr/wdt.h&gt;<br /><br />#include &quot;usbdrv.h&quot;<br />#include &quot;oddebug.h&quot;<br /><br />/* ----------------------- hardware I/O abstraction ------------------------ */<br /><br />/* pin assignments:<br />PA0Key 1<br />PA4Key 2<br /><br />PB3USB-<br />PB6USB+ (int0)<br />PB7debug tx<br />*/<br /><br />static void hardwareInit(void)<br />{<br />uchari, j;<br /><br />    PORTA = 0x11;   /* 0001 0001 bin: activate pull-ups on pin 0 and 4 */<br />    DDRA = 0xee;    /* 1110 1110 bin: pin 0 and 4 are input */<br />    PORTB = 0xb7;   /* 1011 0111 bin: activate pull-ups except on USB lines */<br />    DDRB = 0xff;    /* 1111 1111 bin: no pins input(also trigger USB reset) */<br />j = 0;<br />while(--j){     /* USB Reset by device only required on Watchdog Reset */<br />i = 0;<br />while(--i); /* delay &gt;10ms for USB reset */<br />}<br />    DDRB = 0x80;    /* 1000 0000 bin: remove USB reset condition */<br />    /* configure timer 0 for a rate of 12M/(1024 * 256) = 45.78 Hz (~22ms) */<br />    TCCR0B = 5;      /* timer 0 prescaler: 1024 */<br />}<br /><br />/* ------------------------------------------------------------------------- */<br /><br />#define NUM_KEYS    2<br /><br />/* The following function returns an index for the first key pressed. It<br /> * returns 0 if no key is pressed.<br /> */<br />static uchar    keyPressed(void)<br />{<br />uchar   i, mask, x;<br /><br />    x = PINB;<br />    mask = 1;<br />    for(i=0;i&lt;6;i++){<br />        if((x &amp; mask) == 0)<br />            return i + 1;<br />        mask &lt;&lt;= 1;<br />    }<br />    return 0;<br />}<br /><br />/* ------------------------------------------------------------------------- */<br />/* ----------------------------- USB interface ----------------------------- */<br />/* ------------------------------------------------------------------------- */<br /><br />static uchar    reportBuffer[2];    /* buffer for HID reports */<br />static uchar    idleRate;           /* in 4 ms units */<br /><br />PROGMEM char usbHidReportDescriptor[35] = { /* USB report descriptor */<br />    0x05, 0x01,                    // USAGE_PAGE (Generic Desktop)<br />    0x09, 0x06,                    // USAGE (Keyboard)<br />    0xa1, 0x01,                    // COLLECTION (Application)<br />    0x05, 0x07,                    //   USAGE_PAGE (Keyboard)<br />    0x19, 0xe0,                    //   USAGE_MINIMUM (Keyboard LeftControl)<br />    0x29, 0xe7,                    //   USAGE_MAXIMUM (Keyboard Right GUI)<br />    0x15, 0x00,                    //   LOGICAL_MINIMUM (0)<br />    0x25, 0x01,                    //   LOGICAL_MAXIMUM (1)<br />    0x75, 0x01,                    //   REPORT_SIZE (1)<br />    0x95, 0x08,                    //   REPORT_COUNT (8)<br />    0x81, 0x02,                    //   INPUT (Data,Var,Abs)<br />    0x95, 0x01,                    //   REPORT_COUNT (1)<br />    0x75, 0x08,                    //   REPORT_SIZE (8)<br />    0x25, 0x65,                    //   LOGICAL_MAXIMUM (101)<br />    0x19, 0x00,                    //   USAGE_MINIMUM (Reserved (no event indicated))<br />    0x29, 0x65,                    //   USAGE_MAXIMUM (Keyboard Application)<br />    0x81, 0x00,                    //   INPUT (Data,Ary,Abs)<br />    0xc0                           // END_COLLECTION<br />};<br />/* A simplifed keyboard report descriptor which does not support the<br /> * boot protocol. * The report descriptor has been created with usb.org's &quot;HID Descriptor Tool&quot;<br /> * which can be downloaded from <!-- m --><a class="postlink" href="http://www.usb.org/developers/hidpage/">http://www.usb.org/developers/hidpage/</a><!-- m -->.<br /> * Redundant entries (such as LOGICAL_MINIMUM and USAGE_PAGE) have been omitted<br /> * for the second INPUT item.<br /> */<br /><br />/* Keyboard usage values, see usb.org's HID-usage-tables document, chapter<br /> * 10 Keyboard/Keypad Page for more codes.<br /> */<br />#define MOD_CONTROL_LEFT    (1&lt;&lt;0)<br />#define MOD_SHIFT_LEFT      (1&lt;&lt;1)<br />#define MOD_ALT_LEFT        (1&lt;&lt;2)<br />#define MOD_GUI_LEFT        (1&lt;&lt;3)<br />#define MOD_CONTROL_RIGHT   (1&lt;&lt;4)<br />#define MOD_SHIFT_RIGHT     (1&lt;&lt;5)<br />#define MOD_ALT_RIGHT       (1&lt;&lt;6)<br />#define MOD_GUI_RIGHT       (1&lt;&lt;7)<br /><br />#define KEY_A       4<br />#define KEY_B       5<br />#define KEY_C       6<br />#define KEY_D       7<br />#define KEY_E       8<br />#define KEY_F       9<br />#define KEY_G       10<br />#define KEY_H       11<br />#define KEY_I       12<br />#define KEY_J       13<br />#define KEY_K       14<br />#define KEY_L       15<br />#define KEY_M       16<br />#define KEY_N       17<br />#define KEY_O       18<br />#define KEY_P       19<br />#define KEY_Q       20<br />#define KEY_R       21<br />#define KEY_S       22<br />#define KEY_T       23<br />#define KEY_U       24<br />#define KEY_V       25<br />#define KEY_W       26<br />#define KEY_X       27<br />#define KEY_Y       28<br />#define KEY_Z       29<br />#define KEY_1       30<br />#define KEY_2       31<br />#define KEY_3       32<br />#define KEY_4       33<br />#define KEY_5       34<br />#define KEY_6       35<br />#define KEY_7       36<br />#define KEY_8       37<br />#define KEY_9       38<br />#define KEY_0       39<br /><br />#define KEY_F1      58<br />#define KEY_F2      59<br />#define KEY_F3      60<br />#define KEY_F4      61<br />#define KEY_F5      62<br />#define KEY_F6      63<br />#define KEY_F7      64<br />#define KEY_F8      65<br />#define KEY_F9      66<br />#define KEY_F10     67<br />#define KEY_F11     68<br />#define KEY_F12     69<br /><br />static const uchar  keyReport[NUM_KEYS + 1][2] PROGMEM = {<br />/* none */  {0, 0},                     /* no key pressed */<br />/*  1 */    {MOD_SHIFT_LEFT, KEY_A},<br />/*  2 */    {MOD_SHIFT_LEFT, KEY_B},<br />};<br /><br />static void buildReport(uchar key)<br />{<br />/* This (not so elegant)cast saves 10 bytes of program memory */<br />    *(int *)reportBuffer = pgm_read_word(keyReport[key]);<br />}<br /><br />ucharusbFunctionSetup(uchar data[8])<br />{<br />usbRequest_t    *rq = (void *)data;<br /><br />    usbMsgPtr = reportBuffer;<br />    if((rq-&gt;bmRequestType &amp; USBRQ_TYPE_MASK) == USBRQ_TYPE_CLASS){    /* class request type */<br />        if(rq-&gt;bRequest == USBRQ_HID_GET_REPORT){  /* wValue: ReportType (highbyte), ReportID (lowbyte) */<br />            /* only have one report type, so don't look at wValue */<br />            buildReport(keyPressed());<br />            return sizeof(reportBuffer);<br />        }else if(rq-&gt;bRequest == USBRQ_HID_GET_IDLE){<br />            usbMsgPtr = &amp;idleRate;<br />            return 1;<br />        }else if(rq-&gt;bRequest == USBRQ_HID_SET_IDLE){<br />            idleRate = rq-&gt;wValue.bytes[1];<br />        }<br />    }else{<br />        /* no vendor specific requests implemented */<br />    }<br />return 0;<br />}<br /><br />/* ------------------------------------------------------------------------- */<br /><br />intmain(void)<br />{<br />uchar   key, lastKey = 0, keyDidChange = 0;<br />uchar   idleCounter = 0;<br /><br />wdt_enable(WDTO_2S);<br />    hardwareInit();<br />odDebugInit();<br />usbInit();<br />sei();<br />    DBG1(0x00, 0, 0);<br />for(;;){/* main event loop */<br />wdt_reset();<br />usbPoll();<br />        key = keyPressed();<br />        if(lastKey != key){<br />            lastKey = key;<br />            keyDidChange = 1;<br />        }<br />        if(TIFR &amp; (1&lt;&lt;TOV0)){   /* 22 ms timer */<br />            TIFR = 1&lt;&lt;TOV0;<br />            if(idleRate != 0){<br />                if(idleCounter &gt; 4){<br />                    idleCounter -= 5;   /* 22 ms in units of 4 ms */<br />                }else{<br />                    idleCounter = idleRate;<br />                    keyDidChange = 1;<br />                }<br />            }<br />        }<br />        if(keyDidChange &amp;&amp; usbInterruptIsReady()){<br />            keyDidChange = 0;<br />            /* use last key and not current key status in order to avoid lost<br />               changes in key status. */<br />            buildReport(lastKey);<br />            usbSetInterrupt(reportBuffer, sizeof(reportBuffer));<br />        }<br />}<br />return 0;<br />}<br /><br />/* ------------------------------------------------------------------------- */<br /><br />/* usbconfig.h */<br /><br />#ifndef __usbconfig_h_included__<br />#define __usbconfig_h_included__<br /><br />/*<br />General Description:<br />This file contains parts of the USB driver which can be configured and can or<br />must be adapted to your hardware.<br /><br />Please note that the usbdrv contains a usbconfig-prototype.h file now. We<br />recommend that you use that file as a template because it will always list<br />the newest features and options.<br />*/<br /><br />/* ---------------------------- Hardware Config ---------------------------- */<br /><br />#define USB_CFG_IOPORTNAME      B<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       6<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!<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 1.<br /> */<br />#define USB_CFG_HAVE_INTRIN_ENDPOINT3   0<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 1 and an interrupt-in<br /> * endpoint 3. You must also enable endpoint 1 above.<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_INTR_POLL_INTERVAL      10<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. [It will be divided by two since USB<br /> * communicates power requirements in units of 2 mA.]<br /> */<br />#define USB_CFG_IMPLEMENT_FN_WRITE      0<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       0<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   0<br />/* Define this to 1 if you want to use interrupt-out (or bulk out) endpoint 1.<br /> * You must implement the function usbFunctionWriteOut() which receives all<br /> * interrupt/bulk data sent to endpoint 1.<br /> */<br />#define USB_CFG_HAVE_FLOWCONTROL        0<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 /><br />/* -------------------------- Device Description --------------------------- */<br /><br />/* We cannot use Obdev's free shared VID/PID pair because this is a HID.<br /> * We use John Hyde's VID (author of the book &quot;USB Design By Example&quot;) for<br /> * this example instead. John has offered this VID for use by students for<br /> * non-commercial devices. Well... This example is for demonstration and<br /> * education only... DO NOT LET DEVICES WITH THIS VID ESCAPE YOUR LAB!<br /> * The Product-ID is a random number.<br /> */<br />#define  USB_CFG_VENDOR_ID       0x42, 0x42<br />/* USB vendor ID for the device, low byte first. If you have registered your<br /> * own Vendor ID, define it here. Otherwise you use obdev's free shared<br /> * VID/PID pair. Be sure to read USBID-License.txt for rules!<br /> */<br />#define  USB_CFG_DEVICE_ID       0x31, 0xe1<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 use obdev's free shared VID/PID pair. Be sure to read the rules in<br /> * USBID-License.txt!<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     'Y', 'P', '-', 'E', 'n', 'g', 'i', 'n', 'e', 'e', 'r', 'i', 'n', 'g'<br />#define USB_CFG_VENDOR_NAME_LEN 15<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 USBID-License.txt for<br /> * details. <br /> */<br />#define USB_CFG_DEVICE_NAME     'I', 'P', 'A', 'K', 'e', 'y', 'b', 'o', 'a', 'r', 'd'<br />#define USB_CFG_DEVICE_NAME_LEN 11<br />/* Same as above for the device name. If you don't want a device name, undefine<br /> * the macros. See the file USBID-License.txt before you assign a name.<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    0   /* specify the class at the interface level */<br />#define USB_CFG_DEVICE_SUBCLASS 0<br />/* See USB specification if you want to conform to an existing device class.<br /> */<br />#define USB_CFG_INTERFACE_CLASS     0x03    /* HID class */<br />#define USB_CFG_INTERFACE_SUBCLASS  0       /* no boot interface */<br />#define USB_CFG_INTERFACE_PROTOCOL  0       /* no protocol */<br />/* See USB specification if you want to conform to an existing device class or<br /> * protocol.<br /> */<br />#define USB_CFG_HID_REPORT_DESCRIPTOR_LENGTH    35  /* total length of report descriptor */<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 /> */<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().<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[];<br /> *   char usbDescriptorConfiguration[];<br /> *   char usbDescriptorHidReport[];<br /> *   char usbDescriptorString0[];<br /> *   int usbDescriptorStringVendor[];<br /> *   int usbDescriptorStringDevice[];<br /> *   int usbDescriptorStringSerialNumber[];<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 /> */<br /><br />#define USB_CFG_DESCR_PROPS_DEVICE                  0<br />#define USB_CFG_DESCR_PROPS_CONFIGURATION           0<br />#define USB_CFG_DESCR_PROPS_STRINGS                 0<br />#define USB_CFG_DESCR_PROPS_STRING_0                0<br />#define USB_CFG_DESCR_PROPS_STRING_VENDOR           0<br />#define USB_CFG_DESCR_PROPS_STRING_PRODUCT          0<br />#define USB_CFG_DESCR_PROPS_STRING_SERIAL_NUMBER    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 /><br />#endif /* __usbconfig_h_included__ */<br /><br /><br />I apologize for the bulk this manner of posting code creates, I'm not familiar with methods to post it in a compressed manner. Anyway, back to the point, the problem with this is that when I load this firmware, my USB device is NOT recognized and I hoped that someone could maybe explain to me what I'm doing wrong. My knowledge about USB programming is basic, so keep that in mind please.<br /><br />Thanks in advance.<p>Statistics: Posted by Guest — Fri Sep 11, 2009 12:32 pm</p><hr />
]]></content>
	</entry>
	</feed>
