summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-27 15:09:12 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-27 15:09:12 +0000
commitdf74d01e8080857ff1b1b25f439af3b226fad314 (patch)
treeb4f90a5df2f2c42e9dff863ce7e673c037919e53 /apps
parent841f447aaefbb90682a2ece1728153be9c2fbbef (diff)
downloadpx4-nuttx-df74d01e8080857ff1b1b25f439af3b226fad314.tar.gz
px4-nuttx-df74d01e8080857ff1b1b25f439af3b226fad314.tar.bz2
px4-nuttx-df74d01e8080857ff1b1b25f439af3b226fad314.zip
configs/z8f64200100kit/ostest at same level as ez80 configurations; nuttx/arch/arm/src/lpc17xx/lpc17_i2c.cuninitialization fix
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5392 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps')
-rw-r--r--apps/ChangeLog.txt4
-rw-r--r--apps/examples/relays/Makefile2
-rw-r--r--apps/netutils/codecs/md5.c1
3 files changed, 4 insertions, 3 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index c1c5189c4..3d09915c3 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -33,7 +33,7 @@
6.3 2011-05-15 Gregory Nutt <gnutt@nuttx.org>
- * apps/interpreter: Add a directory to hold interpreters. The Pascal add-
+ * apps/interpreter: Add a directory to hold interpreters. The Pascal add-
on module now installs and builds under this directory.
* apps/interpreter/ficl: Added logic to build Ficl (the "Forth Inspired
Command Language"). See http://ficl.sourceforge.net/.
@@ -421,4 +421,4 @@
make foreach loops instead of shell loops.
* apps/examples/elf/test/*/Makefile: OSX doesn't support install -D, use
mkdir -p then install without the -D. From Mike Smith.
-
+ * apps/examples/relays/Makefile: Reduced stack requirement (Darcy Gong).
diff --git a/apps/examples/relays/Makefile b/apps/examples/relays/Makefile
index 9d7b036d3..8e91ab572 100644
--- a/apps/examples/relays/Makefile
+++ b/apps/examples/relays/Makefile
@@ -64,7 +64,7 @@ ROOTDEPPATH = --dep-path .
APPNAME = relays
PRIORITY = SCHED_PRIORITY_DEFAULT
-STACKSIZE = 2048
+STACKSIZE = 512
# Common build
diff --git a/apps/netutils/codecs/md5.c b/apps/netutils/codecs/md5.c
index bf0394b9d..eb564973f 100644
--- a/apps/netutils/codecs/md5.c
+++ b/apps/netutils/codecs/md5.c
@@ -82,6 +82,7 @@
# define F4(x, y, z) (y ^ (x | ~z))
/* This is the central step in the MD5 algorithm. */
+
# define MD5STEP(f, w, x, y, z, data, s) \
( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )