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

	<title>Objective Development Forums</title>
	
	<link href="https://forums.obdev.at/index.php" />
	<updated>2014-01-03T22:09:12+02:00</updated>

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

		<entry>
		<author><name><![CDATA[sdmeijer]]></name></author>
		<updated>2014-01-03T22:09:12+02:00</updated>

		<published>2014-01-03T22:09:12+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=8782&amp;p=26402#p26402</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=8782&amp;p=26402#p26402"/>
		<title type="html"><![CDATA[Re: Left mouse button click not working under Linux (Debian)]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=8782&amp;p=26402#p26402"><![CDATA[
I changed the usbHidReportDescriptor to the following and that works!<br /><br /><div class="codebox"><p>Code: </p><pre><code>const PROGMEM char usbHidReportDescriptor&#91;89&#93; = {                                         //83<br />0x05, 0x01,                    // 52: USAGE_PAGE (Generic Desktop)<br />0x09, 0x02,                    // USAGE (Mouse)<br />0xa1, 0x01,                    // COLLECTION (Application)<br />    0x85, 0x4d,                 //   REPORT_ID (77)<br />0x09, 0x01,                    //   USAGE (Pointer)<br />0xa1, 0x00,                    //   COLLECTION (Physical)<br />0x05, 0x09,                    //     USAGE_PAGE (Button)<br />0x19, 0x01,                    //     USAGE_MINIMUM (Button 1)<br />0x29, 0x03,                    //     USAGE_MAXIMUM (Button 3)<br />0x15, 0x00,                    //     LOGICAL_MINIMUM (0)<br />0x25, 0x01,                    //     LOGICAL_MAXIMUM (1)<br />0x95, 0x03,                    //     REPORT_COUNT (3)<br />0x75, 0x01,                    //     REPORT_SIZE (1)<br />0x81, 0x02,                    //     INPUT (Data,Var,Abs)<br />0x95, 0x01,                    //     REPORT_COUNT (1)<br />0x75, 0x05,                    //     REPORT_SIZE (5)<br />0x81, 0x03,                    //     INPUT (Cnst,Var,Abs)<br />0x05, 0x01,                    //     USAGE_PAGE (Generic Desktop)<br />0x09, 0x30,                    //     USAGE (X)<br />0x09, 0x31,                    //     USAGE (Y)<br />0x15, 0x81,                    //     LOGICAL_MINIMUM (-127)<br />0x25, 0x7f,                    //     LOGICAL_MAXIMUM (127)<br />0x75, 0x08,                    //     REPORT_SIZE (8)<br />0x95, 0x02,                    //     REPORT_COUNT (2)<br />0x81, 0x06,                    //     INPUT (Data,Var,Rel)<br />0xc0,                          //   END_COLLECTION<br />0xc0,                           // END_COLLECTION<br /><br />    0x05, 0x01,                    // 37: USAGE_PAGE (Generic Desktop)<br />    0x09, 0x06,                    // USAGE (Keyboard)<br />    0xa1, 0x01,                    // COLLECTION (Application)<br />    0x85, 0x4b,              //   REPORT_ID (75)<br />    0x05, 0x07,                    //   USAGE_PAGE (Keyboard)<br />    0x19, 0xE0,                    //   USAGE_MINIMUM (Left Ctrl)<br />    0x29, 0xE7,                    //   USAGE_MAXIMUM (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)<br />    0x29, 0x65,                    //   USAGE_MAXIMUM (Keyboard Application)<br />    0x81, 0x00,                    //   INPUT (Data,Var,Abs)<br />    0xc0                           // END_COLLECTION<br />};</code></pre></div><p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=20144">sdmeijer</a> — Fri Jan 03, 2014 10:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[sdmeijer]]></name></author>
		<updated>2013-12-29T22:42:27+02:00</updated>

		<published>2013-12-29T22:42:27+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=8782&amp;p=26389#p26389</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=8782&amp;p=26389#p26389"/>
		<title type="html"><![CDATA[Left mouse button click not working under Linux (Debian)]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=8782&amp;p=26389#p26389"><![CDATA[
The following code works under Windows and Linux (Debian).<br />The only problem I have is that under Debian the left mouse button click doesn't work (I get a right mouse button click instead), under Windows it works as it should be.<br />Who can help me?<br /><br /><div class="codebox"><p>Code: </p><pre><code>/*<br /> * Based on Obdev's AVRUSB code and under the same license.<br /> *<br /> * TODO: Make a proper file header. :-)<br /> */<br />#ifndef __UsbKeyboard_h__<br />#define __UsbKeyboard_h__<br /><br />#include &lt;avr/pgmspace.h&gt;<br />#include &lt;avr/interrupt.h&gt;<br />#include &lt;string.h&gt;<br /><br />#include &quot;usbdrv.h&quot;<br /><br />// TODO: Work around Arduino 12 issues better.<br />//#include &lt;WConstants.h&gt;<br />//#undef int()<br /><br />typedef uint8_t byte;<br /><br /><br />#define BUFFER_SIZE 4 // Minimum of 2: 1 for modifiers + 1 for keystroke <br /><br /><br />static uchar    idleRate;           // in 4 ms units <br /><br /><br />/* We use a simplifed keyboard report descriptor which does not support the<br /> * boot protocol. We don't allow setting status LEDs and but we do allow<br /> * simultaneous key presses. <br /> * The report descriptor has been created with usb.org's &quot;HID Descriptor Tool&quot;<br /> * which can be downloaded from http://www.usb.org/developers/hidpage/.<br /> * Redundant entries (such as LOGICAL_MINIMUM and USAGE_PAGE) have been omitted<br /> * for the second INPUT item.<br /> */<br />//const PROGMEM char usbHidReportDescriptor&#91;37&#93; = { /* USB report descriptor */<br />//  0x05, 0x01,                    // USAGE_PAGE (Generic Desktop) <br />//  0x09, 0x06,                    // USAGE (Keyboard) <br />//  0xa1, 0x01,                    // COLLECTION (Application) <br />//  0x85, 0x01,         // REPORT_ID (1)<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, BUFFER_SIZE-1,           //   REPORT_COUNT (simultaneous keystrokes) <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 /><br /><br />const PROGMEM char usbHidReportDescriptor&#91;83&#93; = {                                         //83<br />    0x05, 0x01,                    // USAGE_PAGE (Generic Desktop)<br />    0x09, 0x02,                    // USAGE (Mouse)<br />    0xa1, 0x01,                    // COLLECTION (Application)<br />    0x85, 0x4d,                 //   REPORT_ID (77)<br />    0x05, 0x09,                    //   USAGE_PAGE (Button)<br />    0x19, 0x01,                    //   USAGE_MINIMUM (Button 1)<br />    0x29, 0x08,                    //   USAGE_MAXIMUM (Button 8)<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, 0x00,                    //   INPUT (Data,Ary,Abs)<br />    0x05, 0x01,                    //   USAGE_PAGE (Generic Desktop)<br />    0x09, 0x01,                    //   USAGE (Pointer)<br />    0xa1, 0x00,                    //   COLLECTION (Physical)<br />    0x09, 0x30,                    //     USAGE (X)<br />    0x09, 0x31,                    //     USAGE (Y)<br />    0x15, 0x81,                    //     LOGICAL_MINIMUM (-127)<br />    0x25, 0x7f,                    //     LOGICAL_MAXIMUM (127)<br />    0x75, 0x08,                    //     REPORT_SIZE (8)<br />    0x95, 0x02,                    //     REPORT_COUNT (2)<br />    0x81, 0x06,                    //     INPUT (Data,Var,Rel)<br />    0xc0,                          //   END_COLLECTION<br />    0xc0,                          // END_COLLECTION<br />    0x05, 0x01,                    // USAGE_PAGE (Generic Desktop)<br />    0x09, 0x06,                    // USAGE (Keyboard)<br />    0xa1, 0x01,                    // COLLECTION (Application)<br />    0x85, 0x4b,              //   REPORT_ID (75)<br />    0x05, 0x07,                    //   USAGE_PAGE (Keyboard)<br />    0x19, 0xE0,                    //   USAGE_MINIMUM (Left Ctrl)<br />    0x29, 0xE7,                    //   USAGE_MAXIMUM (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)<br />    0x29, 0x65,                    //   USAGE_MAXIMUM (Keyboard Application)<br />    0x81, 0x00,                    //   INPUT (Data,Var,Abs)<br />    0xc0                           // END_COLLECTION<br />};<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 />#define MOD_CAPSLOCK      57<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_ENTER    40<br />#define KEY_ESCAPE   41<br />#define KEY_DELETE   42<br />#define KEY_TAB         43<br />#define KEY_SPACE    44<br />#define KEY_MINUS      45<br />#define KEY_EQUAL      46<br />#define KEY_SQBRO   47  // &#91; <br />#define KEY_SQBRC      48  //  &#93;<br />#define KEY_BACKSLASH   49<br />#define KEY_SEMICOLON      51<br />#define KEY_ACCENT   52<br />#define KEY_GRAVE      53<br />#define KEY_COMMA   54<br />#define KEY_DOT         55<br />#define KEY_SLASH      56<br />#define KEY_PLUS      87<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 />#define KEY_ARROW_RIGHT   79<br />#define KEY_ARROW_LEFT   80<br />#define KEY_ARROW_DOWN   81<br />#define KEY_ARROW_UP   82<br /><br />#define KEY_EXECUTE      116<br />#define KEY_HELP         117<br />#define KEY_MENU         118<br />#define KEY_SELECT      119<br />#define KEY_STOP         120<br />#define KEY_AGAIN         121<br />#define KEY_UNDO         122<br />#define KEY_CUT            123<br />#define KEY_COPY         124<br />#define KEY_PASTE         125<br />#define KEY_FIND            126<br />#define KEY_MUTE         127<br />#define KEY_VOLUP         128<br />#define KEY_VOLDOWN   129<br /><br />#define KEY_PRTSCRN      70<br />#define KEY_SCROLLCK   71<br />#define KEY_PAUSE         72<br />#define KEY_INSERT         73<br />#define KEY_HOME         74<br />#define KEY_PAGEUP      75<br />#define KEY_DELFORW   76<br />#define KEY_END            77<br />#define KEY_PAGEDWN   78<br /><br /><br /><br />class UsbKeyboardDevice {<br /> public:<br />  UsbKeyboardDevice () {<br />    PORTD = 0; // TODO: Only for USB pins?<br />    DDRD |= ~USBMASK;<br /><br />    cli();<br />    usbDeviceDisconnect();<br />    usbDeviceConnect();<br /><br /><br />    usbInit();<br />      <br />    sei();<br /><br />    // TODO: Remove the next two lines once we fix<br />    //       missing first keystroke bug properly.<br />    //memset(reportBuffer, 0, sizeof(reportBuffer));      <br />    //usbSetInterrupt(reportBuffer, sizeof(reportBuffer));<br />  }<br />    <br />  void update() {<br />    usbPoll();<br />  }<br />    <br />  void sendKeyStroke(byte keyStroke) {<br />    sendKeyStroke(keyStroke, 0);<br />  }<br /><br />  void sendKeyStroke(byte keyStroke, byte modifiers) {<br />      <br />    while (!usbInterruptIsReady()) {<br />      // Note: We wait until we can send keystroke<br />      //       so we know the previous keystroke was<br />      //       sent.<br />    }<br />      <br />    memset(reportBuffer, 0, sizeof(reportBuffer));<br /><br />    ///reportBuffer&#91;0&#93; = modifiers;<br />    ///reportBuffer&#91;1&#93; = keyStroke;<br />   <br />   reportBuffer&#91;0&#93; = 75;<br />   reportBuffer&#91;1&#93; = modifiers;<br />   reportBuffer&#91;2&#93; = keyStroke;<br />    <br />   usbSetInterrupt(reportBuffer, sizeof(reportBuffer));<br /><br />    //while (!usbInterruptIsReady()) {<br />      // Note: We wait until we can send keystroke<br />      //       so we know the previous keystroke was<br />      //       sent.<br />    //}<br />      <br />    //// This stops endlessly repeating keystrokes:<br />    //// SDM: Moved to releaseKeyStroke<br />    //memset(reportBuffer, 0, sizeof(reportBuffer));  //wat, vervangen door, hoeveel keer     <br />    //usbSetInterrupt(reportBuffer, sizeof(reportBuffer));<br /><br />  }<br /><br />  void releaseKeyStroke() {<br />   while (!usbInterruptIsReady()) {<br />   }<br />    memset(reportBuffer, 0, sizeof(reportBuffer));<br />   <br />   reportBuffer&#91;0&#93; = 75;<br />   reportBuffer&#91;1&#93; = 0;<br />   reportBuffer&#91;2&#93; = 0;<br />   <br />    usbSetInterrupt(reportBuffer, sizeof(reportBuffer));<br />  }<br />  <br />  //private: TODO: Make friend?<br />  uchar    reportBuffer&#91;4&#93;;    // buffer for HID reports &#91; 1 modifier byte + (len-1) key strokes&#93;<br /><br /> //MOUSE<br /><br />void mouse(char dx, char dy, uchar button)<br />{<br />    memset(reportBuffer, 0, sizeof(reportBuffer));<br />      <br />   reportBuffer&#91;0&#93; = 77;<br />   reportBuffer&#91;1&#93; = button;<br />   reportBuffer&#91;2&#93; = dx; //X<br />   reportBuffer&#91;3&#93; = dy; //Y<br />   <br />   usbSetInterrupt(reportBuffer, sizeof(reportBuffer));<br />}<br />  <br />  <br />};<br /><br />UsbKeyboardDevice UsbKeyboard = UsbKeyboardDevice();<br /><br /><br /><br />#ifdef __cplusplus<br />extern &quot;C&quot;{<br />#endif <br />  // USB_PUBLIC uchar usbFunctionSetup<br />uchar usbFunctionSetup(uchar data&#91;8&#93;) <br />  {<br />    usbRequest_t    *rq = (usbRequest_t *)((void *)data);<br /><br />    usbMsgPtr = UsbKeyboard.reportBuffer; //<br />    if((rq-&gt;bmRequestType &amp; USBRQ_TYPE_MASK) == USBRQ_TYPE_CLASS){<br />      /* class request type */<br /><br />      if(rq-&gt;bRequest == USBRQ_HID_GET_REPORT){<br />   /* wValue: ReportType (highbyte), ReportID (lowbyte) */<br /><br />   /* we only have one report type, so don't look at wValue */<br />        // TODO: Ensure it's okay not to return anything here?    <br />   return 0;<br /><br />      }else if(rq-&gt;bRequest == USBRQ_HID_GET_IDLE){<br />   //            usbMsgPtr = &amp;idleRate;<br />   //            return 1;<br />   return 0;<br />      }else if(rq-&gt;bRequest == USBRQ_HID_SET_IDLE){<br />   idleRate = rq-&gt;wValue.bytes&#91;1&#93;;<br />      }<br />    }else{<br />      /* no vendor specific requests implemented */<br />    }<br />    return 0;<br />  }<br />#ifdef __cplusplus<br />} // extern &quot;C&quot;<br />#endif<br /><br /><br />#endif // __UsbKeyboard_h__<br /></code></pre></div><br /><br />I call the mouse-click as follows:<br /><div class="codebox"><p>Code: </p><pre><code>UsbKeyboard.mouse(0, 0, 1);</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 767 2009-08-22 11:39:22Z 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      4<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 and 20000. The 12.8 MHz and 16.5 MHz versions of the code require no<br /> * crystal, they tolerate +/- 1% deviation from the nominal frequency. All<br /> * other rates require a precision of 2000 ppm and thus a crystal!<br /> * Default if not specified: 12 MHz<br /> */<br />#define USB_CFG_CHECK_CRC       0<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          5<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   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 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      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      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) 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        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 />#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 />#define USB_CFG_HAVE_MEASURE_FRAME_LENGTH   0<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       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 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       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 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     'S','c','r','a','t','c','h','E','d','.','e','u'<br />#define USB_CFG_VENDOR_NAME_LEN 12<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     'S','h','r','i','m','p','K','e','y'<br />#define USB_CFG_DEVICE_NAME_LEN 9<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        0    /* 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     0x03  /* HID */ /* define class here if not at device level */<br />#define USB_CFG_INTERFACE_SUBCLASS  0<br />#define USB_CFG_INTERFACE_PROTOCOL  0<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    83<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 const 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 const 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                  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 />/* #define USB_INTR_VECTOR         SIG_INTERRUPT0 */<br /><br />#define USB_INTR_VECTOR INT0_vect<br /><br />#endif /* __usbconfig_h_included__ */<br /></code></pre></div><p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=20144">sdmeijer</a> — Sun Dec 29, 2013 10:42 pm</p><hr />
]]></content>
	</entry>
	</feed>
