summaryrefslogtreecommitdiff
path: root/apps/interpreters
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-23 15:58:33 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-23 15:58:33 -0600
commit9b0a2b82889066203257626cab8df0dfbe0af990 (patch)
tree4bc9609cbc88a1c65dba311d75bad9b95c14be2d /apps/interpreters
parenta59b9b3e861eaaa68b0011426e586c1999e4844d (diff)
downloadpx4-nuttx-9b0a2b82889066203257626cab8df0dfbe0af990.tar.gz
px4-nuttx-9b0a2b82889066203257626cab8df0dfbe0af990.tar.bz2
px4-nuttx-9b0a2b82889066203257626cab8df0dfbe0af990.zip
Update README file
Diffstat (limited to 'apps/interpreters')
-rw-r--r--apps/interpreters/README.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/apps/interpreters/README.txt b/apps/interpreters/README.txt
index 12e973057..c51f48eff 100644
--- a/apps/interpreters/README.txt
+++ b/apps/interpreters/README.txt
@@ -93,7 +93,16 @@ micropython
discussions in the NuttX Yahoo! forum; people have found many creative
way to link with the newlib math library, for example.
- 5. Micro Python is released under the MIT license which is license-compatible
+ 5. See errors like this?
+
+ error: unknown type name 'wint_t'
+
+ You can't include the NuttX wchar.h header file where this is defined, but
+ you can add this to the mpconfigport.h header file:
+
+ typedef int wint_t;
+
+ 6. Micro Python is released under the MIT license which is license-compatible
with the NuttX 3-clause BSD license. Here is the full text of the Micro
Python LICENSE file as of 2015-01-14: