avr-gcc-list
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [avr-gcc-list] basic UART Transmit interrupt problem


From: Larry Barello
Subject: Re: [avr-gcc-list] basic UART Transmit interrupt problem
Date: Thu, 3 Jul 2003 16:20:21 -0700

It looks like you have defined no vectors. They all jump to the same location.  
you
probably spelled the signal names wrong (they are #defines that are turned into
"__vector_XX" strings).  Look in the appropriate ioXXXX.h file to see the 
defines so you
don't misspell them.

This is the problem with #defines: there is no error checking for misspelling.


----- Original Message ----- 
From: "Woodward, Mark P" <address@hidden>
To: "'Dean Ferreyra'" <address@hidden>; <address@hidden>
Sent: Thursday, July 03, 2003 3:05 PM
Subject: RE: [avr-gcc-list] basic UART Transmit interrupt problem


> Hi Dean,
>
> When I disassemble the .elf file I produced below, I get the following
>
> 00000000 <__vectors>:
>    0:   0c c0           rjmp    .+24            ; 0x1a
>    2:   26 c0           rjmp    .+76            ; 0x50
>    4:   25 c0           rjmp    .+74            ; 0x50
>    6:   24 c0           rjmp    .+72            ; 0x50
>    8:   23 c0           rjmp    .+70            ; 0x50
>    a:   22 c0           rjmp    .+68            ; 0x50
>    c:   21 c0           rjmp    .+66            ; 0x50
>    e:   20 c0           rjmp    .+64            ; 0x50



reply via email to

[Prev in Thread] Current Thread [Next in Thread]