Re: [patch,avr] Implement PR116056: attribute signal(n) and interrupt(n)

2024-07-28 Thread Georg-Johann Lay
Applied with the addendum below. Am 23.07.24 um 22:19 schrieb Georg-Johann Lay: This patch adds support for arguments to the signal and interrupt function attributes.  It allows to specify the ISR by means of the associated IRQ number, in extension to the current attributes that require to speci

Re: [patch,avr] Implement PR116056: attribute signal(n) and interrupt(n)

2024-07-25 Thread Jeff Law
On 7/23/24 2:19 PM, Georg-Johann Lay wrote: This patch adds support for arguments to the signal and interrupt function attributes.  It allows to specify the ISR by means of the associated IRQ number, in extension to the current attributes that require to specify the ISR name like "__vector_1"

[patch,avr] Implement PR116056: attribute signal(n) and interrupt(n)

2024-07-23 Thread Georg-Johann Lay
This patch adds support for arguments to the signal and interrupt function attributes. It allows to specify the ISR by means of the associated IRQ number, in extension to the current attributes that require to specify the ISR name like "__vector_1" as (assembly) name for the function. The new fe