Search found 1013 matches
- Wed May 14, 2008 6:25 pm
- Forum: V-USB
- Topic: working nicely on my laptop, but fail on my PC?
- Replies: 32
- Views: 34663
- Mon May 12, 2008 10:34 am
- Forum: V-USB
- Topic: bootloadHID - timing - program optimisation
- Replies: 3
- Views: 4481
I have not seen a single upgrade on Windows (or any other major OS) where the memory consumption was actually decreased I think the delay in bootLoaderInit() is not absolutely required, it should work without it. And as a bonus, the next driver release will even have a couple of bytes less when comp...
- Sat May 10, 2008 6:16 pm
- Forum: V-USB
- Topic: PowerSwitch on atmega16
- Replies: 3
- Views: 4857
Clock settings are done by setting fuse values. And it's impossible to change fuse values from within the firmware. Maybe the chip is blown, not bricked (and not stoned...). I therefore suspect a severe hardware problem. Oscillator calibration is only required if you run from the RC oscillator, not ...
- Fri May 09, 2008 8:13 pm
- Forum: V-USB
- Topic: Using an Obdev AVR-USB device with Labview
- Replies: 7
- Views: 11064
- Fri May 09, 2008 11:06 am
- Forum: V-USB
- Topic: MAIN.HEX COMPILE ERROR??
- Replies: 3
- Views: 5552
You can also simply delete the call to the checksize script.
The fuse values depend on the chip you use. See the examples in the latest version of the driver (http://www.obdev.at/products/avrusb/download.html) for example values and more info. The fuse values can be found in the Makefile.
The fuse values depend on the chip you use. See the examples in the latest version of the driver (http://www.obdev.at/products/avrusb/download.html) for example values and more info. The fuse values can be found in the Makefile.
- Fri May 09, 2008 11:04 am
- Forum: V-USB
- Topic: PowerSwitch on atmega16
- Replies: 3
- Views: 4857
- Fri May 09, 2008 10:57 am
- Forum: V-USB
- Topic: AVR MacPack and AVRISP and STK500 v2
- Replies: 1
- Views: 3528
You need to set the programmer type for avrdude with the "-c" option. Try
for a list of programmers. It's probably avrisp2 or avrisp.
Code: Select all
avrdude -c helpfor a list of programmers. It's probably avrisp2 or avrisp.
- Thu May 08, 2008 11:04 am
- Forum: V-USB
- Topic: not sure if 1 atmega is enough
- Replies: 2
- Views: 3565
If you really want a USB device (not a host), then this should be possible. You MUST make sure that interrupts are never disabled for longer than a couple of CPU instructions. This means that your SPI interrupt routine must re-enable all interrupts (sei instruction) before doing anything else, even ...
- Thu May 08, 2008 10:57 am
- Forum: V-USB
- Topic: bootloadHID - timing - program optimisation
- Replies: 3
- Views: 4481
Use _delay_ms() from util/delay.h as in the latest examples included in the new avr-usb driver package. If it does not fit into 2k, upgrade to the latest driver, this version should save enough bytes so that it fits. If it still does not fit, consider using gcc 3 instead of gcc 4, it compiles smalle...
- Thu May 08, 2008 10:55 am
- Forum: V-USB
- Topic: Can't send data to device
- Replies: 2
- Views: 4096
- Mon May 05, 2008 9:20 pm
- Forum: V-USB
- Topic: making USBasp hardware with AVR-Doper 2008-04-27 firmware
- Replies: 18
- Views: 19025
- Mon May 05, 2008 8:45 pm
- Forum: V-USB
- Topic: making USBasp hardware with AVR-Doper 2008-04-27 firmware
- Replies: 18
- Views: 19025
You can test your hardware and fuse values with Thomas Fischl's original firmware. If that works, the hardware is OK. I know that I claimed support for USBasp hardware. This is reasonable since there are only very little changes with respect to metaboard. But it's still possible to make errors, even...
- Mon May 05, 2008 1:02 pm
- Forum: V-USB
- Topic: making USBasp hardware with AVR-Doper 2008-04-27 firmware
- Replies: 18
- Views: 19025
Sorry, I think I misunderstood your original posting: You're trying to run the AVR-Doper firmware on USBasp hardware and it does not work, right? In this case you don't need libusb-win32, of course. I must admit that I have not tested AVR-Doper on USBasp hardware because I don't have one available, ...
- Sun May 04, 2008 10:23 pm
- Forum: V-USB
- Topic: Atmega128 restarts
- Replies: 1
- Views: 3415
Have you enabled the watchdog? Please note that newer devices don't reset the watchdog during a CPU reset. Once it is enabled, it stays enabled until explicitly disabled. usbInit() can't crash, it just initializes some registers. Maybe sei() causes the crash, an interrupt may be enabled which has no...
- Sun May 04, 2008 10:13 pm
- Forum: V-USB
- Topic: making USBasp hardware with AVR-Doper 2008-04-27 firmware
- Replies: 18
- Views: 19025