git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@620 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2009-01-11 11:30:46 +00:00
parent 382151cf63
commit a50a5627b6
1 changed files with 5 additions and 2 deletions

View File

@ -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. 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: Added a configuration option to enable nested system locks/unlocks.
- NEW: Improved the interrupt handlers related code. Now interrupts are - NEW: Improved the interrupt handlers related code. Now interrupts are
handled in a very similar way for every architecture. Added macros and handled in a very similar way for every architecture.
functions that hide the implementation details. - 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 *** *** 1.0.0rc2 ***
- FIX: Removed unused variable "retaddr" from the Cortex-M3 port. - FIX: Removed unused variable "retaddr" from the Cortex-M3 port.