aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports/GCC/MSP430
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-10-02 11:04:23 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-10-02 11:04:23 +0000
commit9a42d5914405143eabaf1c38891c29aafcd6a77d (patch)
treeaa4997b45e11f00b6ef87ef9c9a0a7dd41c60b47 /os/ports/GCC/MSP430
parent55848af13c5077a42ef71b15ab98e003ed709948 (diff)
downloadChibiOS-9a42d5914405143eabaf1c38891c29aafcd6a77d.tar.gz
ChibiOS-9a42d5914405143eabaf1c38891c29aafcd6a77d.tar.bz2
ChibiOS-9a42d5914405143eabaf1c38891c29aafcd6a77d.zip
Documentation related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2222 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/GCC/MSP430')
-rw-r--r--os/ports/GCC/MSP430/port.dox7
1 files changed, 3 insertions, 4 deletions
diff --git a/os/ports/GCC/MSP430/port.dox b/os/ports/GCC/MSP430/port.dox
index 3f9609cf9..66f2562c8 100644
--- a/os/ports/GCC/MSP430/port.dox
+++ b/os/ports/GCC/MSP430/port.dox
@@ -48,8 +48,8 @@
* .
* @section MSP430_NOTES The MSP430 port notes
* - The MSP430 does not have a dedicated interrupt stack, make sure to reserve
- * enough stack space for interrupts in each thread stack. This can be done
- * by modifying the @p INT_REQUIRED_STACK configuration options.
+ * enough stack space for interrupts in each thread stack. This can be done
+ * by modifying the @p INT_REQUIRED_STACK configuration options.
* - The state of the hardware multiplier is not saved in the thread context,
* make sure to use it in <b>Suspended</b> state (interrupts masked).
* - The port code does not define the switch to a low power mode for the
@@ -69,8 +69,7 @@
* - @p INT_REQUIRED_STACK, this value represent the amount of stack space
* used by the interrupt handlers.<br>
* The default for this value is @p 32, this space is allocated for each
- * thread so be careful in order to not waste precious RAM space.<br>
- * The default value is set into <b>./os/ports/GCC/MSP430/chcore.h</b>.
+ * thread so be careful in order to not waste precious RAM space.
* - @p IDLE_THREAD_STACK_SIZE, stack area size to be assigned to the IDLE
* thread. Usually there is no need to change this value unless inserting
* code in the IDLE thread hook macro.