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

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

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

		<entry>
		<author><name><![CDATA[toface]]></name></author>
		<updated>2009-11-21T02:31:25+02:00</updated>

		<published>2009-11-21T02:31:25+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3103&amp;p=12079#p12079</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3103&amp;p=12079#p12079"/>
		<title type="html"><![CDATA[Re: make HIDKeys reference example detect multiple keystrokes]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3103&amp;p=12079#p12079"><![CDATA[
The problem is the report size is limited to 8 bytes per transfer. I'm doing much the same thing, but since I have a very limited amount of different keys, I tried to change the report descriptor to use list all the keys and then just set (on/off) per key. You can see my report descriptor here: <a href="http://forums.obdev.at/viewtopic.php?f=8&amp;t=3558" class="postlink">http://forums.obdev.at/viewtopic.php?f=8&amp;t=3558</a>.<br /><br />My code does however NOT work, and I don't know why. I have never seen any report descriptor like mine, but I haven't found anything to tell me it shouldn't work.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=3147">toface</a> — Sat Nov 21, 2009 2:31 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[alpha]]></name></author>
		<updated>2009-08-12T02:23:22+02:00</updated>

		<published>2009-08-12T02:23:22+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3103&amp;p=10497#p10497</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3103&amp;p=10497#p10497"/>
		<title type="html"><![CDATA[Re: make HIDKeys reference example detect multiple keystrokes]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3103&amp;p=10497#p10497"><![CDATA[
For a test I merged the HID example and the C64 Keyboard example... I tried to change it to use more keys than 6, but i was not successful. To test this I used the AT90S2313... it works fine, however I had to remove some code to make it work.<br /><br />Regards,<br />Markus Schulz<br /><br />PS: by the way I copyed the lates driver version in the example directory, looks like this saved my some flash memory.<br /><br /><div class="codebox"><p>Code: </p><pre><code>/* Name: main.c<br /> * Project: HID-Test<br /> * Author: Christian Starkjohann<br /> * Creation Date: 2006-02-02<br /> * Tabsize: 4<br /> * Copyright: (c) 2006 by OBJECTIVE DEVELOPMENT Software GmbH<br /> * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)<br /> * This Revision: $Id: main.c 299 2007-03-29 17:07:19Z cs $<br /> */<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 /><br />PB1   Key 1<br />PB2   Key 2<br />PB3   Key 3<br />PB4   Key 4<br /><br />PD0   USB-<br />PD1   debug tx<br />PD2   USB+ (int0)<br />PD6   Key Shift<br />*/<br /><br />static void hardwareInit(void)<br />{<br />uchar   i, j;<br /><br />    PORTB = 0xff;   /* activate all pull-ups */<br />    DDRB = 1;       /* all pins input */<br />    PORTD = 0xfa;   /* 1111 1010 bin: activate pull-ups except on USB lines */<br />    DDRD = 0x07;    /* 0000 0111 bin: all pins input except USB (-&gt; 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 /><br />    DDRD = 0x02;    /* 0000 0010 bin: remove USB reset condition */<br />    /* configure timer 0 for a rate of 12M/(1024 * 256) = 45.78 Hz (~22ms) */<br />    TCCR0 = 5;      /* timer 0 prescaler: 1024 */<br />}<br /><br />/* ------------------------------------------------------------------------- */<br /><br />#define NUM_KEYS    8<br /><br />static uchar    keyPressed(void)<br />{<br />uchar   i, mask, x, key;<br />   <br />   key = 0;<br />    x = PINB;<br />    mask = 1;<br />    for(i=0;i&lt;6;i++){<br />        if((x &amp; mask) == 0)<br />            key = i;<br />        mask &lt;&lt;= 1;<br />    }<br />    <br />    x = PIND;<br />    mask = 64;<br />        if((x &amp; mask) == 0 &amp;&amp; key &gt; 0)<br />            key = key + 4;<br />    return key;<br />}<br /><br />/* ------------------------------------------------------------------------- */<br />/* ----------------------------- USB interface ----------------------------- */<br />/* ------------------------------------------------------------------------- */<br /><br />static uchar    idleRate;           /* in 4 ms units */<br />static uchar    protocolVer=1;      /* 0 is the boot protocol, 1 is report protocol */<br /><br />char usbHidReportDescriptor&#91;USB_CFG_HID_REPORT_DESCRIPTOR_LENGTH&#93; <br />  PROGMEM = {<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 />    0x81, 0x03,                    //   INPUT (Cnst,Var,Abs)<br />    0x95, 0x05,                    //   REPORT_COUNT (5)<br />    0x75, 0x01,                    //   REPORT_SIZE (1)<br />    0x05, 0x08,                    //   USAGE_PAGE (LEDs)<br />    0x19, 0x01,                    //   USAGE_MINIMUM (Num Lock)<br />    0x29, 0x05,                    //   USAGE_MAXIMUM (Kana)<br />    0x91, 0x02,                    //   OUTPUT (Data,Var,Abs)<br />    0x95, 0x01,                    //   REPORT_COUNT (1)<br />    0x75, 0x03,                    //   REPORT_SIZE (3)<br />    0x91, 0x03,                    //   OUTPUT (Cnst,Var,Abs)<br />    0x95, 0x06,                    //   REPORT_COUNT (6)<br />    0x75, 0x08,                    //   REPORT_SIZE (8)<br />    0x15, 0x00,                    //   LOGICAL_MINIMUM (0)<br />    0x25, 0x65,                    //   LOGICAL_MAXIMUM (101)<br />    0x05, 0x07,                    //   USAGE_PAGE (Keyboard)<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 /><br />#define KEY_A       4<br /><br />static uchar reportBuffer&#91;NUM_KEYS&#93;;<br /><br />static void buildReport(uchar key)<br />{<br />    int i;<br />    reportBuffer&#91;0&#93; = 0;<br />    reportBuffer&#91;1&#93; = 0;<br />   for(i=2;i&lt;=NUM_KEYS;i++)<br />   {<br />      if(key==0){reportBuffer&#91;i&#93; = 0;}<br />      else{ reportBuffer&#91;i&#93; = KEY_A+i;}<br />    }                         <br />}<br /><br />uchar   usbFunctionSetup(uchar data&#91;8&#93;){<br />   usbRequest_t    *rq = (void *)data;<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 />            /* we only have one report type, so don't look at wValue */<br />            return sizeof(reportBuffer);<br />        }else if(rq-&gt;bRequest == USBRQ_HID_SET_REPORT){<br />            if (rq-&gt;wLength.word == 1) { /* We expect one byte reports */<br />           return 0xFF; /* Call usbFunctionWrite with data */<br />            }  <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&#91;1&#93;;<br />        }else if(rq-&gt;bRequest == USBRQ_HID_GET_PROTOCOL) {<br />            if (rq-&gt;wValue.bytes&#91;1&#93; &lt; 1) {<br />              protocolVer = rq-&gt;wValue.bytes&#91;1&#93;;<br />            }<br />        }else if(rq-&gt;bRequest == USBRQ_HID_SET_PROTOCOL) {<br />         usbMsgPtr = &amp;protocolVer;<br />         return 1;<br />       }<br />    }<br />   return 0;<br />}<br /><br />uchar usbFunctionWrite(uchar *data, uchar len) {<br />   return 0x01;<br />}<br /><br /><br />/* ------------------------------------------------------------------------- */<br /><br />int   main(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 /></code></pre></div><br /><br /><div class="codebox"><p>Code: </p><pre><code>/* Name: usbconfig.h<br /> * Project: AVR USB driver<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) or proprietary (CommercialLicense.txt)<br /> * This Revision: $Id: usbconfig.h 300 2007-03-29 17:07:35Z cs $<br /> */<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      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      0<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!<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. &#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       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  0x03, 0x01<br />/* Version number of the device: Minor number first, then major number.<br /> */<br />#define USB_CFG_VENDOR_NAME     'M'<br />#define USB_CFG_VENDOR_NAME_LEN 1<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     'S'<br />#define USB_CFG_DEVICE_NAME_LEN 1<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   '2'<br />#define USB_CFG_SERIAL_NUMBER_LEN   1<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  0x01    /* Boot-device subclass */<br />#define USB_CFG_INTERFACE_PROTOCOL  0x01    /* Keyboard 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    63  /* 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&#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 /> */<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 /></code></pre></div><p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=161">alpha</a> — Wed Aug 12, 2009 2:23 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[foodead]]></name></author>
		<updated>2009-08-10T12:26:15+02:00</updated>

		<published>2009-08-10T12:26:15+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3103&amp;p=10459#p10459</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3103&amp;p=10459#p10459"/>
		<title type="html"><![CDATA[make HIDKeys reference example detect multiple keystrokes]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3103&amp;p=10459#p10459"><![CDATA[
Hello, I'd like to make the HIDKeys reference example be able to detect 14 simultaneous keystrokes w/o modifier keys.<br />I'm posting here because I want to make sure that my mental model of how usbkeyboards and the code works, and the<br />way they actually work are similar.<br /><br />First, my understanding is that a usb-keyboard DOES NOT send key-up events. It sends key-down events and the<br />computer assumes the lack of a report after a while is a key-up event.<br /><br />Second, there's no operating-system level barrier to detecting multiple keystrokes.<br /><br />Third, here's what I think I'll have to do in code to implement my idea...<br />  1. Change the usbHIDreport descriptor to use 14 byte input reports<br />  2. Make all the switches change certain elements in an array of ints that will<br />      be my input report.<br />  3. Send that array of ints.<br /><br />That's the general idea. Are there any incorrect assumptions or glaring mistakes<br />in how I'm going about this? <br />I have no experience programming microcontrollers; if this is trivial to implement<br />for somebody who has experience, it'd be greatly appreciated if you could post the code.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=2640">foodead</a> — Mon Aug 10, 2009 12:26 pm</p><hr />
]]></content>
	</entry>
	</feed>
