aboutsummaryrefslogtreecommitdiffstats
path: root/source/language.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-10-25 21:15:28 -0400
committerMarti Bolivar <mbolivar@mit.edu>2010-11-17 12:44:28 -0500
commit2d429e75ce69e77f8c95490ac03881ec9aa0354a (patch)
treea3b810a6c75625b07a4b976e5d1e319c60e19a6b /source/language.rst
parent30ac55d80c18e93f9c39a6dd850c10f9e7fd92ac (diff)
downloadlibrambutan-2d429e75ce69e77f8c95490ac03881ec9aa0354a.tar.gz
librambutan-2d429e75ce69e77f8c95490ac03881ec9aa0354a.zip
arduino language reference nearing completion, properly CC-BY-SA 3.0 attributed
Diffstat (limited to 'source/language.rst')
-rw-r--r--source/language.rst8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/language.rst b/source/language.rst
index 5a2efad..b2ef017 100644
--- a/source/language.rst
+++ b/source/language.rst
@@ -193,7 +193,9 @@ Arduino Documentation Links
| | | |
+------------------------------------+------------------------------------+-----------------------------------------+
-.. _language-no-word:
+.. _language-missing-features:
+
+Stub TODO: fill in other missing features, like analogReference()
.. note::
@@ -212,7 +214,7 @@ Arduino Documentation Links
can put the following at the top of the file you're porting::
typedef uint16 word;
-
+
.. _if: http://arduino.cc/en/Reference/If
.. _if...else: http://arduino.cc/en/Reference/Else
.. _for: http://arduino.cc/en/Reference/For
@@ -394,7 +396,7 @@ method, which behaves roughly like::
while (true) loop();
}
-(The truth is a little bit more complicated, but not by much).
+(The truth is a little bit more complicated, but not by much).
As an example, consider a sketch with two files. The first file
contains ``setup()`` and ``loop()``::