aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-11 11:30:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-11 11:30:46 +0000
commita50a5627b641b3c6b82c5fbdf708eb16fafbe8f8 (patch)
treeb0ab1991d5077882936fadac1e6ce28c4722b666
parent382151cf63ff5ef3144fc38bb87490d33da7b2d3 (diff)
downloadChibiOS-a50a5627b641b3c6b82c5fbdf708eb16fafbe8f8.tar.gz
ChibiOS-a50a5627b641b3c6b82c5fbdf708eb16fafbe8f8.tar.bz2
ChibiOS-a50a5627b641b3c6b82c5fbdf708eb16fafbe8f8.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@620 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--readme.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/readme.txt b/readme.txt
index 03ba27355..2b2f4010b 100644
--- a/readme.txt
+++ b/readme.txt
@@ -80,8 +80,11 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
Port functions are no more directly exposed as APIs to the user code.
- NEW: Added a configuration option to enable nested system locks/unlocks.
- NEW: Improved the interrupt handlers related code. Now interrupts are
- handled in a very similar way for every architecture. Added macros and
- functions that hide the implementation details.
+ handled in a very similar way for every architecture.
+- CHANGE: Renamed the macros chSysIRQEnter() and chSysIRQExit() in
+ CH_IRQ_PROLOGUE() and CH_IRQ_EPILOGUE() in order to make very clear that
+ those are not functions but inlined code. Also introduced a new macro
+ CH_IRQ_HANDLER that should be used when declaring an interrupt handler.
*** 1.0.0rc2 ***
- FIX: Removed unused variable "retaddr" from the Cortex-M3 port.