Here are pre-packaged versions of Agilla. See the tutorial for installation instructions.
05-22-2006 Version 3.0.2 - Source
Added an Example Makefile.Agilla and updated the README to describe the flags in it.
05-16-2006 Version 3.0.1 - Source
Contains a small fix that rectifies the "QUEUE_ENQUEUE" error that
sometimes occurs when there are numerous agents in the network. This distribution
contains both the Java and NesC code in a single zip file. To install it, extract
it
to /opt/tinyos-1.x/.
05-14-2006 Version 3.0 - NesC, Java
Added support for TelosB platform. Allow the user to disable the grid topology
filter and greedy routing. Note that the Java Makefile assumes a $AGILLA
environment variable that specifies the root directory of Agilla's NesC
code. Agilla's nesC code goes under tinyos-x.1/contrib/wustl/apps/Agilla/.
07-14-2005 Version 2.2 - NesC, Java
Comments: Reduced memory usage to avoid stack overflow when large agents are
injected.
05-25-2005 Version 2.1 - NesC, Java
Comments: This version fixes a bug that prevented you from moving
a mote more than once. It also changes the "reset all" function
to only reset nodes that are reachable from the base station that broadcasted
the reset message.
2) When specifying the grid size, you only specify the number of columns (you no longer need to specify the number of rows). The node’s TinyOS address still determines the mote’s location. Mote 0 is at (1,1) located at the lower-left corner of the grid. TinyOS address’s increase in row major order.
3) A mote’s location can be changed using the AgentInjector (you no longer need to reprogram the mote to change its address/location). The original ID of the mote is always used to specify which mote to modify, e.g., “move mote 1 to location (2,3).”
4) The AgentInjector enters a modal state for ~3 seconds after a reset to allow the network components to reinitialize themselves. This is especially critical now that I’m sending the base station a message immediately after it resets telling it that it is a base station.
5) The nodes periodically broadcast a beacon, neighbor discovery is done by each node
6) The base station can be any node in the network. It no longer has a special address. There can be multiple base stations. Base stations can also move, their location is set like any other node using the AgentInjector.
7) Since the location of a base station is no longer known by the non-base station nodes, Agilla no longer performs multi-hop routing to (uart_x, uart_y). Only the base station can perform a remote tuple space operation to (uart_x, uart_y). It is now up to the application to route messages to the base station. If an agent knows the location of the base station, Agilla can still perform the greedy multi-hop routing to it.