diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-11-13 16:59:32 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-11-13 16:59:32 +0000 |
commit | bb6d225f57811ded378ffcb2457454decdb98e1c (patch) | |
tree | 1d4e61fd481495424d182664fccadd6b7942fb22 /os/ports | |
parent | 1d6a32367685583864d10cba03102578e15f04c8 (diff) | |
download | ChibiOS-bb6d225f57811ded378ffcb2457454decdb98e1c.tar.gz ChibiOS-bb6d225f57811ded378ffcb2457454decdb98e1c.tar.bz2 ChibiOS-bb6d225f57811ded378ffcb2457454decdb98e1c.zip |
Initial STM8L support.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2359 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports')
-rw-r--r-- | os/ports/RC/STM8/chcore.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/os/ports/RC/STM8/chcore.h b/os/ports/RC/STM8/chcore.h index 4deacd9de..b550b20ac 100644 --- a/os/ports/RC/STM8/chcore.h +++ b/os/ports/RC/STM8/chcore.h @@ -186,7 +186,8 @@ struct stm8_startctx { * @details This macro must be inserted at the start of all IRQ handlers
* enabled to invoke system APIs.
*/
-#define PORT_IRQ_PROLOGUE()
+#define PORT_IRQ_PROLOGUE() { \
+}
/**
* @brief IRQ epilogue code.
|