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

master
gdisirio 2008-12-30 19:55:09 +00:00
parent d64c4c5b2e
commit 30745dff77
1 changed files with 3 additions and 8 deletions

View File

@ -311,14 +311,9 @@
* <li>@p INT_REQUIRED_STACK, this value represent the amount of stack space used
* by an interrupt handler between the @p extctx and @p intctx
* structures.<br>
* In practice this value is the stack space used by the chSchDoReschedule()
* stack frame.<br>
* This value can be affected by a variety of external things like compiler
* version, compiler options, kernel settings (speed/size) and so on.<br>
* The default for this value is @p 0x10 which should be a safe value, you
* can trim this down by defining the macro externally. This would save
* some valuable RAM space for each thread present in the system.<br>
* The default value is set into <b>./ports/ARMCM3/chcore.h</b>.</li>
* In the current implementation this value is guaranteed to be zero so
* there is no need to modify this value unless changes are done at the
* interrupts handling code.</li>
* <li>@p BASEPRI_USER, this is the @p BASEPRI value for the user threads. The
* default value is @p 0 (disabled).<br>
* Usually there is no need to change this value, please refer to the