[Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/wustl/websites/agilla/docs/tutorials
1_installation.html, 1.4, 1.5
Chien-Liang Fok
chien-liang at users.sourceforge.net
Wed May 3 09:57:53 PDT 2006
Update of /cvsroot/tinyos/tinyos-1.x/contrib/wustl/websites/agilla/docs/tutorials
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25561/docs/tutorials
Modified Files:
1_installation.html
Log Message:
fixed some typeos.
Index: 1_installation.html
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/contrib/wustl/websites/agilla/docs/tutorials/1_installation.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** 1_installation.html 1 Feb 2006 08:14:26 -0000 1.4
--- 1_installation.html 3 May 2006 16:57:51 -0000 1.5
***************
*** 20,24 ****
<h1>Lesson 1: Agilla Installation</h1>
<p><em>Last Updated on
! <!-- #BeginDate format:Am1a -->February 1, 2006 2:14 AM<!-- #EndDate -->
.</em></p>
<p><strong>Note:</strong> As of 11/03/2005, the latest version of Agilla
--- 20,24 ----
<h1>Lesson 1: Agilla Installation</h1>
<p><em>Last Updated on
! <!-- #BeginDate format:Am1a -->May 3, 2006 11:56 AM<!-- #EndDate -->
.</em></p>
<p><strong>Note:</strong> As of 11/03/2005, the latest version of Agilla
***************
*** 45,49 ****
Example Agilla agents will be in <code>tinyos-1.x/contrib/wustl/apps/AgillaAgents</code>.</p>
</li>
! <li>Add WUAPPS and AGILLA environment variables pointing to Agilla's
firmware and Washington University's contrib directory. <br>
<br>
--- 45,49 ----
Example Agilla agents will be in <code>tinyos-1.x/contrib/wustl/apps/AgillaAgents</code>.</p>
</li>
! <li>Add WUROOT and AGILLA environment variables pointing to Agilla's
firmware and Washington University's contrib directory. <br>
<br>
***************
*** 60,71 ****
</pre>
</li>
! <li><a name="makefile_agilla"></a>Create a <var><code>Makefile.Agilla</code></var> file containing
! local settings within <code>$TOSROOT/contrib/wustl/apps/Agilla</code>.
! Here is an example of what should be included
! in this file:
!
! <pre class="screen">PFLAGS_AGILLA=-DAGILLA_NUM_AGENTS=3 \<br> -DAGILLA_NETWORK_INTERFACE_RECEIVE_QUEUE_SIZE=4 \<br> -DAGILLA_NETWORK_INTERFACE_SEND_QUEUE_SIZE=4 \<br> -DAGILLA_SNDR_BUFF_SIZE=1 \<br> -DAGILLA_SNDR_RETRY_TIMER=512 \<br> -DAGILLA_SNDR_MAX_RETRIES=2 \<br> -DAGILLA_SNDR_RXMIT_TIMER=290 \<br> -DAGILLA_SNDR_MAX_RETRANSMITS=4 \<br> -DAGILLA_RCVR_ABORT_TIMER=1000 \<br> -DAGILLA_RCVR_FIN_TIMER=300 \<br> -DAGILLA_MAX_NUM_NEIGHBORS=20 \<br> -DAGILLA_REMOTE_TS_OP_Q_SIZE=3 \<br> -DAGILLA_TS_SIZE=100 \<br> -DAGILLA_RTS_TIMEOUT=256 \<br> -DAGILLA_RTS_MAX_NUM_TRIES=4 \<br> -DAGILLA_TS_BOUNCEQ_SIZE=2 \<br> -DREACTION_MGR_BUFFER_SIZE=5 \<br> -DBEACON_PERIOD=2048 \<br> -DBEACON_RAND=1024 \<br> -DBEACON_TIMEOUT=9216 \<br> -DENABLE_SPACE_LOCALIZER=1 \<br> -DOMIT_AGENT_SENDER=0 \<br> -DOMIT_AGENT_RECEIVER=0 \<br> -DOMIT_CONTEXT_DISCOVERY=0 \<br> -DINCLUDE_DEFAULT_AGENT=0 \<br> -DDEBUG_AGENT_RECEIVER=0 \<br> -DDEBUG_AGENT_SENDER=0 \<br> -DDEBUG_OPSTACK=1 \<br> -DDEBUG_HEAPMGR=0 \<br> -DDEBUG_AGENT_MGR=0 \<br> -DDEBUG_CODEMGR=0 \<br> -DDEBUG_REMOTE_TS_OP_MGR=0 \<br> -DDEBUG_RXNMGR=0 \<br> -DDEBUG_TS=0 \<br> -DDEBUG_TUPLE_UTIL=0</pre>
! </pre>
! An easier to way get this file is to simply copy the example file
included with Agilla:<br>
<br>
--- 60,66 ----
</pre>
</li>
! <li><a name="makefile_agilla"></a>Create a <var><code>Makefile.Agilla</code></var> file
! containing local settings within <code>$TOSROOT/contrib/wustl/apps/Agilla</code>.
! Simply copy the example file
included with Agilla:<br>
<br>
***************
*** 88,92 ****
# Agilla Aliases
alias cda="cd $AGILLA"
! alias cdaj="cd $WUAPPS/tools/java/edu/wustl/mobilab/agilla"
alias ri="java -Djava.security.policy=java.policy edu.wustl.mobilab.agilla.AgentInjector \
-comm COM1:57600 -d &"
--- 83,87 ----
# Agilla Aliases
alias cda="cd $AGILLA"
! alias cdaj="cd $WUROOT/tools/java/edu/wustl/mobilab/agilla"
alias ri="java -Djava.security.policy=java.policy edu.wustl.mobilab.agilla.AgentInjector \
-comm COM1:57600 -d &"
***************
*** 97,101 ****
alias ri_rmi="java -Djava.security.policy=java.policy edu.wustl.mobilab.agilla.AgentInjector \
-comm RMI:localhost -d &"
! alias mj="cd $WUAPPS/tools/java/edu/wustl/mobilab/agilla; javac *.java"
alias riall_m2="cd $AGILLA; gawk -f installer_m2.awk"
alias riall_mz="cd $AGILLA; gawk -f installer_mz.awk"
--- 92,96 ----
alias ri_rmi="java -Djava.security.policy=java.policy edu.wustl.mobilab.agilla.AgentInjector \
-comm RMI:localhost -d &"
! alias mj="cd $WUROOT/tools/java/edu/wustl/mobilab/agilla; javac *.java"
alias riall_m2="cd $AGILLA; gawk -f installer_m2.awk"
alias riall_mz="cd $AGILLA; gawk -f installer_mz.awk"
***************
*** 235,242 ****
the serial port the programming board is attached to (e.g., <code>COM1</code>). <br>
</li>
! <li><a name="AgentInjector"></a>The AgillaAgentInjector is a program written in Java that allowers users
! to inject mobile agents in to the wireless sensor network. It is located
in $WUROOT/tools/java/edu/wustl/mobilab/agilla. The main class is <code>edu.wustl.mobilab.agilla.AgentInjector</code>.
! Before compiling the AgentInjector, make sure the base base directory $WUROOT/tools/java
is in the $CLASSPATH.<br>
<br>
--- 230,238 ----
the serial port the programming board is attached to (e.g., <code>COM1</code>). <br>
</li>
! <li><a name="AgentInjector"></a>The AgillaAgentInjector is a program written
! in Java that allows users to inject mobile agents in to the wireless sensor
! network. It is located
in $WUROOT/tools/java/edu/wustl/mobilab/agilla. The main class is <code>edu.wustl.mobilab.agilla.AgentInjector</code>.
! Before compiling the AgentInjector, make sure the base directory $WUROOT/tools/java
is in the $CLASSPATH.<br>
<br>
More information about the Tinyos-contrib-commits
mailing list