aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/timers.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-06-10 10:25:17 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2011-06-10 10:43:01 -0400
commitc765320c83dd25f026eb86785e55773b72a6bcd2 (patch)
treeae62b828ff6a9e46bc903621fbde190a76e4c032 /docs/source/timers.rst
parent6cc1ea450b288d76d2b2d66176abba78dea6e467 (diff)
downloadlibrambutan-c765320c83dd25f026eb86785e55773b72a6bcd2.tar.gz
librambutan-c765320c83dd25f026eb86785e55773b72a6bcd2.zip
Docs: move ASSERT() to its own page.
ASSERT() was previously documented in language.rst. Move it to a new lang/api/assert.rst.
Diffstat (limited to 'docs/source/timers.rst')
-rw-r--r--docs/source/timers.rst9
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/source/timers.rst b/docs/source/timers.rst
index e23579d..b6c0886 100644
--- a/docs/source/timers.rst
+++ b/docs/source/timers.rst
@@ -66,11 +66,10 @@ Working with timers and interrupts can be tricky; they are a somewhat
"advanced" topic. The following subsections explain some common
problems associated with using timers and timer interrupts.
-In general: start simple, test with :ref:`ASSERT() <language-assert>`,
-and don't try to do too much in your interrupt handlers! Make sure
-that what you're trying to do in a handler isn't going to block other
-interrupts from firing, if those other interrupts are important for
-your program.
+In general: start simple, test with :ref:`lang-assert`, and don't try
+to do too much in your interrupt handlers! Make sure that what you're
+trying to do in a handler isn't going to block other interrupts from
+firing, if those other interrupts are important for your program.
.. _timers-pwm-conflicts: