diff options
author | isiora <none@example.com> | 2017-08-14 09:08:03 +0000 |
---|---|---|
committer | isiora <none@example.com> | 2017-08-14 09:08:03 +0000 |
commit | f4d5d1c0ad311a2f04fbb8149cd403459b5d9fd9 (patch) | |
tree | 53ad6d604d3012736e73225af4d96a563bdd5043 | |
parent | c06ff694bdfa0e9e4dd26143c351eaf348cbfd0e (diff) | |
download | ChibiOS-f4d5d1c0ad311a2f04fbb8149cd403459b5d9fd9.tar.gz ChibiOS-f4d5d1c0ad311a2f04fbb8149cd403459b5d9fd9.tar.bz2 ChibiOS-f4d5d1c0ad311a2f04fbb8149cd403459b5d9fd9.zip |
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
-rw-r--r-- | os/common/ports/ARMCAx-TZ/chcore.h | 4 |
1 files 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.
|