From f4d5d1c0ad311a2f04fbb8149cd403459b5d9fd9 Mon Sep 17 00:00:00 2001 From: isiora Date: Mon, 14 Aug 2017 09:08:03 +0000 Subject: The IRQ handlers are normal functions: deleted interrupt attribute to them. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10423 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/common/ports/ARMCAx-TZ/chcore.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/os/common/ports/ARMCAx-TZ/chcore.h b/os/common/ports/ARMCAx-TZ/chcore.h index c5d0f61d7..ca23c296f 100644 --- a/os/common/ports/ARMCAx-TZ/chcore.h +++ b/os/common/ports/ARMCAx-TZ/chcore.h @@ -298,7 +298,7 @@ struct port_context { * port implementation. */ #define PORT_IRQ_HANDLER(id) \ - __attribute__((interrupt("FIQ"))) bool id(void) + bool id(void) /** * @brief Fast IRQ handler function declaration. @@ -306,7 +306,7 @@ struct port_context { * port implementation. */ #define PORT_FAST_IRQ_HANDLER(id) \ - __attribute__((interrupt("FIQ"))) bool id(void) + bool id(void) /** * @brief Performs a context switch between two threads. -- cgit v1.2.3