summaryrefslogtreecommitdiff
path: root/apps/interpreters
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-23 16:40:18 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-23 16:40:18 -0600
commitc6f348acc5e6108896d6cfbc4565dd09418ba890 (patch)
treeed986bf560e20068706fa9c722afd6949bcd3d20 /apps/interpreters
parent9b0a2b82889066203257626cab8df0dfbe0af990 (diff)
downloadpx4-nuttx-c6f348acc5e6108896d6cfbc4565dd09418ba890.tar.gz
px4-nuttx-c6f348acc5e6108896d6cfbc4565dd09418ba890.tar.bz2
px4-nuttx-c6f348acc5e6108896d6cfbc4565dd09418ba890.zip
Networking: IPv4 and IPv6 work together. This fixes a bug necessary to accomplish that as well as cleaning up a couple of other issues
Diffstat (limited to 'apps/interpreters')
-rw-r--r--apps/interpreters/README.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/interpreters/README.txt b/apps/interpreters/README.txt
index c51f48eff..f3ba029b0 100644
--- a/apps/interpreters/README.txt
+++ b/apps/interpreters/README.txt
@@ -98,10 +98,15 @@ micropython
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:
+ you can add this to the mpconfigport.h header file (if it is not already
+ there):
typedef int wint_t;
+ Is the missing wint_t definition coming from alloca.h? You can either
+ (1) replace alloc(a) with the #define described above, or (2) move the
+ typedef of wint_t to before the inclusion of alloca.h.
+
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: