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

	<title>Objective Development Forums</title>
	
	<link href="https://forums.obdev.at/index.php" />
	<updated>2010-10-27T23:00:03+02:00</updated>

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

		<entry>
		<author><name><![CDATA[r0nfl]]></name></author>
		<updated>2010-10-27T23:00:03+02:00</updated>

		<published>2010-10-27T23:00:03+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3702&amp;p=16421#p16421</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3702&amp;p=16421#p16421"/>
		<title type="html"><![CDATA[Re: Compile PowerSwitch using AVR Studio 4.18]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3702&amp;p=16421#p16421"><![CDATA[
Hey, these are nice hints but I am not sure how to use them.<br /><br />At the Moment I am working on the &quot;HIDKeys&quot; project:<br /><br />main.c:<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      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     'o', 'b', 'd', 'e', 'v', '.', 'a', 't'<br />#define USB_CFG_VENDOR_NAME_LEN 8<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     'H', 'I', 'D', 'K', 'e', 'y', 's'<br />#define USB_CFG_DEVICE_NAME_LEN 7<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&#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> <br /><br />The console output is:<br /><br /><div class="codebox"><p>Code: </p><pre><code>rm -rf main.o  HID-Keys.elf dep/* HID-Keys.hex HID-Keys.eep HID-Keys.lss HID-Keys.map<br />Build succeeded with 0 Warnings...<br />avr-gcc  -mmcu=atmega8 -Wall -gdwarf-2 -std=gnu99 -DF_CPU=16000000UL -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -MD -MP -MT main.o -MF dep/main.o.d  -c  ../main.c<br />../main.c:11:1: warning: &quot;F_CPU&quot; redefined<br />&lt;command-line&gt;: warning: this is the location of the previous definition<br />../main.c: In function 'main':<br />../main.c:283: warning: implicit declaration of function 'usbInterruptIsReady'<br />../main.c:288: warning: implicit declaration of function 'usbSetInterrupt'<br />avr-gcc -mmcu=atmega8 -Wl,-Map=HID-Keys.map main.o     -o HID-Keys.elf<br />main.o: In function `usbFunctionSetup':<br />E:\Progs\AVR_Projekte\HID-Keys\default/../main.c:233: undefined reference to `usbMsgPtr'<br />E:\Progs\AVR_Projekte\HID-Keys\default/../main.c:233: undefined reference to `usbMsgPtr'<br />E:\Progs\AVR_Projekte\HID-Keys\default/../main.c:240: undefined reference to `usbMsgPtr'<br />E:\Progs\AVR_Projekte\HID-Keys\default/../main.c:240: undefined reference to `usbMsgPtr'<br />main.o: In function `main':<br />E:\Progs\AVR_Projekte\HID-Keys\default/../main.c:261: undefined reference to `usbInit'<br />E:\Progs\AVR_Projekte\HID-Keys\default/../main.c:266: undefined reference to `usbPoll'<br />E:\Progs\AVR_Projekte\HID-Keys\default/../main.c:283: undefined reference to `usbInterruptIsReady'<br />E:\Progs\AVR_Projekte\HID-Keys\default/../main.c:288: undefined reference to `usbSetInterrupt'<br />make: *** &#91;HID-Keys.elf&#93; Error 1<br />Build failed with 8 errors and 4 warnings...<br /><br /></code></pre></div><br /><br />Then I add &quot;-l&quot; to the Custom compilation Options. The console output is now:<br /><br /><div class="codebox"><p>Code: </p><pre><code>rm -rf main.o  HID-Keys.elf dep/* HID-Keys.hex HID-Keys.eep HID-Keys.lss HID-Keys.map<br />Build succeeded with 0 Warnings...<br />avr-gcc  -mmcu=atmega8 -Wall -gdwarf-2 -std=gnu99   -DF_CPU=16000000UL -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -l  -MD -MP -MT main.o -MF dep/main.o.d  -c  ../main.c<br />cc1.exe: error: to generate dependencies you must specify either -M or -MM<br />make: *** &#91;main.o&#93; Error 1<br />Build failed with 1 errors and 0 warnings...<br /><br /></code></pre></div><br /><br />ok... I am not getting an idea what to do now. Adding &quot;-M&quot; to the Custom compilation Options gets this from the console:<br /><br /><div class="codebox"><p>Code: </p><pre><code>rm -rf main.o  HID-Keys.elf dep/* HID-Keys.hex HID-Keys.eep HID-Keys.lss HID-Keys.map<br />Build succeeded with 0 Warnings...<br />avr-gcc  -mmcu=atmega8 -Wall -gdwarf-2 -std=gnu99    -l   -DF_CPU=16000000UL -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -M  -MD -MP -MT main.o -MF dep/main.o.d  -c  ../main.c<br />avr-gcc -mmcu=atmega8 -Wl,-Map=HID-Keys.map main.o     -o HID-Keys.elf<br />avr-gcc: main.o: No such file or directory<br />make: *** &#91;HID-Keys.elf&#93; Error 1<br />Build failed with 1 errors and 0 warnings...<br /><br /></code></pre></div><br /><br />I have got no idea. I have added the usbdrvasm.S and usbdrvasm.asm to &quot;Other Files&quot; in AVR Studio 4.18 build 716. What am I doing wrong?<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=4512">r0nfl</a> — Wed Oct 27, 2010 11:00 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[meneerflappy]]></name></author>
		<updated>2009-12-30T18:14:20+02:00</updated>

		<published>2009-12-30T18:14:20+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3702&amp;p=12652#p12652</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3702&amp;p=12652#p12652"/>
		<title type="html"><![CDATA[Re: Compile PowerSwitch using AVR Studio 4.18]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3702&amp;p=12652#p12652"><![CDATA[
Thanx,<br /><br />it did the trick, the program compiled. Now lets see if I can get the hardware to work <img class="smilies" src="./../../../images/smilies/icon_smile.gif" alt=":)" title="Smile" /><p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=3320">meneerflappy</a> — Wed Dec 30, 2009 6:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[christian]]></name></author>
		<updated>2009-12-30T09:33:04+02:00</updated>

		<published>2009-12-30T09:33:04+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3702&amp;p=12647#p12647</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3702&amp;p=12647#p12647"/>
		<title type="html"><![CDATA[Re: Compile PowerSwitch using AVR Studio 4.18]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3702&amp;p=12647#p12647"><![CDATA[
You need to add the USB related files (assembler and C) to your project. Instead of copy/pasteing the contents of main.c, simply add main.c to your project and remove firmware.c.<br /><br />Also, please make sure that defines like F_CPU and options like the -I options for gcc are set correctly. See the Makefile for details.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=8">christian</a> — Wed Dec 30, 2009 9:33 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[meneerflappy]]></name></author>
		<updated>2009-12-29T18:49:33+02:00</updated>

		<published>2009-12-29T18:49:33+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3702&amp;p=12637#p12637</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3702&amp;p=12637#p12637"/>
		<title type="html"><![CDATA[Compile PowerSwitch using AVR Studio 4.18]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3702&amp;p=12637#p12637"><![CDATA[
II have been trying to compile the demo program PowerSwitch using AVR studio.<br /><br />For this I have created a new project<br />Copy pasted the contents of main.c into my project file (firmware.c).<br />Ensured that all the libraries are found in the compiler options<br /><br />Pressed F7 (build)<br /><br />The build fails with the following error messages:<br /><br />rm -rf firmware.o  firmware.elf dep/* firmware.hex firmware.eep firmware.lss firmware.map<br />Build succeeded with 0 Warnings...<br />avr-gcc -I&quot;C:\compile\firmware&quot; -I&quot;C:\compile\usbdrv&quot; -I&quot;C:\compile\.&quot;  -mmcu=atmega48 -Wall -gdwarf-2 -Os -std=gnu99 -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -MD -MP -MT firmware.o -MF dep/firmware.o.d  -c  ../firmware.c<br />avr-gcc -mmcu=atmega48 -Wl,-Map=firmware.map firmware.o    -lc  -o firmware.elf<br />firmware.o: In function `usbFunctionSetup':<br />C:\compile\default/../firmware.c:90: undefined reference to `usbMsgPtr'<br />C:\compile\default/../firmware.c:90: undefined reference to `usbMsgPtr'<br />firmware.o: In function `main':<br />C:\compile\default/../firmware.c:155: undefined reference to `usbInit'<br />C:\compile\default/../firmware.c:159: undefined reference to `usbPoll'<br />make: *** [firmware.elf] Error 1<br />Build failed with 4 errors and 0 warnings...<br /><br />At this moment I am just trying to compile the software to see if it might work with my device. <br /><br />Any suggestions what I can do to improve?<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=3320">meneerflappy</a> — Tue Dec 29, 2009 6:49 pm</p><hr />
]]></content>
	</entry>
	</feed>
