From: sdhsdh Date: Sat, 13 Feb 2010 13:35:30 +0000 (+0000) Subject: Update READMEs to included instructions about blip make extra. X-Git-Tag: rc_6_tinyos_2_1_1~17 X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=commitdiff_plain;h=0d86dca5b4628116cb1afb2b24edcae4896c4c09 Update READMEs to included instructions about blip make extra. --- diff --git a/apps/IPBaseStation/README b/apps/IPBaseStation/README index 47442bc3..dddc615a 100644 --- a/apps/IPBaseStation/README +++ b/apps/IPBaseStation/README @@ -11,6 +11,10 @@ to use a mote attached to a computer as an 802.15.4 interface rather then an actual mote. The actual queuing logic for copying packets is mostly unchanged, and it continues to make use of serial ACKs. +To build, add the 'blip' make extra. IE, + +$ make blip ... + Description of BaseStation: BaseStation is an application that acts as a simple Active Message diff --git a/apps/TCPEcho/README b/apps/TCPEcho/README new file mode 100644 index 00000000..d3e70640 --- /dev/null +++ b/apps/TCPEcho/README @@ -0,0 +1,12 @@ + +A simple application which verifies the 6loWPAN stack is functioning +correctly. A mote running this will respond to ICMP Echo requests +(0x80), and provide a UDP echo service on port 7 (a la rfc862). + +It also provides a TCP echo service on port 7, and a simple HTTP +server on port 80. The only resource supported is '/read/leds'. This +functionality can be used to verify that the TCP stack is functional. + +To build, use the 'blip' make target extra. IE, + +$ make blip ... diff --git a/apps/UDPEcho/README b/apps/UDPEcho/README index dbe1f931..a0986c09 100644 --- a/apps/UDPEcho/README +++ b/apps/UDPEcho/README @@ -1,6 +1,8 @@ - A simple application which verifies the 6loWPAN stack is functioning +A simple application which verifies the 6loWPAN stack is functioning correctly. A mote running this will respond to ICMP Echo requests (0x80), and provide a UDP echo service on port 7 (a la rfc862). +To build, use the 'blip' make target extra. IE, +$ make blip ...