aboutsummaryrefslogtreecommitdiffstats
path: root/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
commit3a5fcafcd6eadafa5ffadb30f4c2de6ecdf05023 (patch)
tree304aae5b73d3337ae739ce0fc113ef9e0de22c8c /source/timers.rst
parentcd9b275805d98f9fa20ae19a59c6c9cdadb39af8 (diff)
downloadlibrambutan-3a5fcafcd6eadafa5ffadb30f4c2de6ecdf05023.tar.gz
librambutan-3a5fcafcd6eadafa5ffadb30f4c2de6ecdf05023.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 'source/timers.rst')
-rw-r--r--source/timers.rst9
1 files changed, 4 insertions, 5 deletions
diff --git a/source/timers.rst b/source/timers.rst
index e23579d..b6c0886 100644
--- a/source/timers.rst
+++ b/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: