[Tinyos-2-commits] CVS: tinyos-2.x/apps/tests/tkn154 makeall.sh, NONE, 1.1 README.txt, 1.2, 1.3
Jan-Hinrich Hauer
janhauer at users.sourceforge.net
Mon May 18 09:23:43 PDT 2009
Update of /cvsroot/tinyos/tinyos-2.x/apps/tests/tkn154
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20038/apps/tests/tkn154
Modified Files:
README.txt
Added Files:
makeall.sh
Log Message:
Restructured the test apps: now there is a distinction between (a separate subdir for) apps using beacon-enabled and nonbeacon-enabled mode.
--- NEW FILE: makeall.sh ---
#!/bin/bash
# compile/clean all test applications
PLATFORM=$1
OPTIONS=
STARTDIR=`pwd`
MAKEFILES=`find . -name Makefile`
if [ $# == 0 ];
then
echo "Usage: $0 <platform|clean>"
exit
fi
for m in $MAKEFILES
do
cd ${m%Makefile}
if [ "x$1" == xclean ];
then
make clean
else
make $PLATFORM $OPTIONS;
fi
cd $STARTDIR
done
exit
Index: README.txt
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/apps/tests/tkn154/README.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** README.txt 24 Jul 2008 11:06:23 -0000 1.2
--- README.txt 18 May 2009 16:23:41 -0000 1.3
***************
*** 5,11 ****
This folder contains test applications for "TKN15.4", a platform-independent
! IEEE 802.15.4-2006 MAC implementation. Every test application resides in a
! separate subdirectory which includes a README.txt describing what it does and
! how it can be installed, respectively.
The TKN15.4 implementation can be found in tinyos-2.x/tos/lib/mac/tkn154.
--- 5,13 ----
This folder contains test applications for "TKN15.4", a platform-independent
! IEEE 802.15.4-2006 MAC implementation. Applications that use the beacon-enabled
! mode are located in the "beacon-enabled" folder, applications that use the
! nonbeacon-enabled mode are in the "nonbeacon-enabled" folder. Every test
! application resides in a separate subdirectory which includes a README.txt
! describing what it does and how it can be installed, respectively.
The TKN15.4 implementation can be found in tinyos-2.x/tos/lib/mac/tkn154.
More information about the Tinyos-2-commits
mailing list