summaryrefslogtreecommitdiff
path: root/nuttx/Documentation
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-06-09 15:49:44 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-06-09 15:49:44 +0000
commit05dd8c79b40af0221973ba0ee19ee0066c3a8dde (patch)
tree6aa570fa88dbc3e31d4d6061276f3f72c21b3ff3 /nuttx/Documentation
parent747de88ae98ba1e232db4c61b01b114772236c02 (diff)
downloadpx4-nuttx-05dd8c79b40af0221973ba0ee19ee0066c3a8dde.tar.gz
px4-nuttx-05dd8c79b40af0221973ba0ee19ee0066c3a8dde.tar.bz2
px4-nuttx-05dd8c79b40af0221973ba0ee19ee0066c3a8dde.zip
Add support for custom system timer frequency
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@274 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/Documentation')
-rw-r--r--nuttx/Documentation/NuttX.html6
-rw-r--r--nuttx/Documentation/NuttxPortingGuide.html6
2 files changed, 10 insertions, 2 deletions
diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html
index c68001742..6b5d03248 100644
--- a/nuttx/Documentation/NuttX.html
+++ b/nuttx/Documentation/NuttX.html
@@ -8,7 +8,7 @@
<tr align="center" bgcolor="#e4e4e4">
<td>
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
- <p>Last Updated: May 26, 2007</p>
+ <p>Last Updated: June 9, 2007</p>
</td>
</tr>
</table>
@@ -595,7 +595,9 @@ Other memory:
* sched/usleep.c: Fixed nsec calculation
* lib/lib_strcspn.c: Function incorrectly named strspn().
* examples/ostest/main.c: Errors in SDCC version of a memcpy() call
- * examples/ostest/sighandl.c: Don't call fflush() if streams are disabled
+ * examples/ostest/sighand.c: Don't call fflush() if streams are disabled
+ * include/limits.h, include/time.h, sched/clock_internal.h: A support for
+ using selectable system timer frequency.
* Started m68322
</pre></ul>
diff --git a/nuttx/Documentation/NuttxPortingGuide.html b/nuttx/Documentation/NuttxPortingGuide.html
index 8cd9d06e3..38ab0c31e 100644
--- a/nuttx/Documentation/NuttxPortingGuide.html
+++ b/nuttx/Documentation/NuttxPortingGuide.html
@@ -1164,6 +1164,12 @@ The system can be re-made subsequently by just typing <code>make</code>.
handle and enables the API mm_addregion(start, end);
</li>
<li>
+ <code>CONFIG_TICKS_PER_MSEC</code>: The default system timer is 100Hz
+ or <code>TICKS_PER_MSEC</code>=10. This setting may be defined to inform NuttX
+ that the processor hardware is providing system timer interrupts at some interrupt
+ interval other than 10 msec.
+ </li>
+ <li>
<code>CONFIG_RR_INTERVAL</code>: The round robin timeslice will be set
this number of milliseconds; Round robin scheduling can
be disabled by setting this value to zero.