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

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

Re: [avr-gcc-list] How to handle interrupt vectors ?


From: Joerg Wunsch
Subject: Re: [avr-gcc-list] How to handle interrupt vectors ?
Date: Tue, 28 Oct 2008 23:56:34 +0100 (MET)

Charalampos Alexopoulos <address@hidden> wrote:

> An ISR is used with a vector as a parameter, ...

Did you ever look into what the ISR macro actually resolves to?  It's
just a couple of ``extern "C"'' declarations, and the parameter of
that macro is used as the function name to declare it to.  The ISR
macro itself doesn't check anything there, but the expected value (by
the C run-time startup code) for that parameter is to be of the form
__vector_N (with N being a number ranging from 1 through the number of
interrupt vector slots of that AVR).

It should be pretty obvious that a name like foo::mumble can never
match that __vector_N requirement, so the linker will never be able to
put your interrupt handler into place.

-- 
cheers, J"org               .-.-.   --... ...--   -.. .  DL8DTL

http://www.sax.de/~joerg/                        NIC: JW11-RIPE
Never trust an operating system you don't have sources for. ;-)




reply via email to

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