diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-19 15:10:41 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-19 15:10:41 +0000 |
commit | 79089d6352e01e1e7c6c3f0a88266abbc9af6abb (patch) | |
tree | 0ad16ec06bc8f671018a82fb2360f0eefac1ca24 /ports/MSP430 | |
parent | 0810f1daac3c33d194d573d82ec436021e3e7255 (diff) | |
download | ChibiOS-79089d6352e01e1e7c6c3f0a88266abbc9af6abb.tar.gz ChibiOS-79089d6352e01e1e7c6c3f0a88266abbc9af6abb.tar.bz2 ChibiOS-79089d6352e01e1e7c6c3f0a88266abbc9af6abb.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@644 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports/MSP430')
-rw-r--r-- | ports/MSP430/chcore.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ports/MSP430/chcore.h b/ports/MSP430/chcore.h index 08240835a..ee184be53 100644 --- a/ports/MSP430/chcore.h +++ b/ports/MSP430/chcore.h @@ -155,10 +155,9 @@ struct context { }
/**
- * IRQ handler function modifier. Note, it just aliases the WinMSP "interrupt"
- * macro.
+ * IRQ handler function modifier.
*/
-#define PORT_IRQ_HANDLER interrupt
+#define PORT_IRQ_HANDLER(id) interrupt void id(void)
/**
* This function is empty in this port.
|