I was wondering if there was a technical reason for only using interrupt0? For a design I am thinking about I was going to put it at interrupt2.
Interrupt2 on the 8515 (my target chip) is an edge interrupt only, will this mess up the interrupts USB is trying to take advantage of?
Interrupts
Re: Interrupts
The code will work with Int2 (I've done that with an Mega162).
But beware: Int0 and Int1 have a higher priority than Int2. This might cause some problems, when using these Interrups.
Are you sure that the 8515 has an Int2? Or do you mean the Mega 8515?
But beware: Int0 and Int1 have a higher priority than Int2. This might cause some problems, when using these Interrups.
Are you sure that the 8515 has an Int2? Or do you mean the Mega 8515?
-
- Posts: 10
- Joined: Wed Sep 12, 2007 7:57 pm
- Contact:
christian wrote:Please also note that you need the most recent version (2007-08-07) of AVR-USB. Older versions had the interrupt vector hardcoded in the assembler modules.
Is that the one, that comes with the latest AVR-Dopper? BTW, wouldn't it be possible to have releases just for AVR-USB (or even better to use SVN or simillar system)?
Thanks!