osd-contiki/examples/webserver-ipv6-raven
2011-02-08 07:03:32 -05:00
..
Huginn Give jackdaw fe80::0 address and number webservers from fe80::1 2010-12-14 23:22:01 +00:00
Muninn Give jackdaw fe80::0 address and number webservers from fe80::1 2010-12-14 23:22:01 +00:00
Makefile Allow other (compatible) AVR targets 2011-02-07 13:37:43 -05:00
Makefile.webserver Keep httpd-fsdata.c on a $make clean, add documentation. 2010-07-30 20:07:41 +00:00
README Update description of make process. 2011-02-08 07:03:32 -05:00
webserver6.c Forgot these files! 2008-10-14 22:04:16 +00:00

This example features a simple webserver running on top of the IPv6
contiki stack. It differs from the generic webserver6 example in that
wherever possible data is stored in avr flash memory instead of RAM.
In addition are cgi scripts for displaying temperature and voltage sensors,
and sleep and radio statistics, on web pages.

A bare $make will use the avr-raven platform. Alternate compatible platforms can
be specified, e.g. $make TARGET=avr-atmega128rfa1. In that case the webserver
process and web content located in that platform directory will be used.

The perl script /tools/makefsdata converts web content from (by default)
all the files in the /httpd-fs subdirectory into the c source file /httpd-fsdata.c.
This file is not deleted in a $make clean so that a rebuild can be done without
perl in the toolchain (e.g. from a Windows cmd window). If any web file is
changed the dependencies will attempt to update httpd-fsdata.c. If perl
is not present, touching httpd-fsdata.c will give it a newer modification date
and allow the build to continue.
  
Two alternate web contents Huginn and Muninn are included in this directory.
Use e.g. $make WEBDIR=Huginn to generate a webserver6-huginn.elf file.
Different ipv6 address suffix and server names can be specified in the makefsdata.h
file of each directory so that mote addresses will not conflict.

webserver6.elf is always generated. It is also copied to another file whose name
indicates the platform and web directory. $make clean operates only the specified
target and webdir.  For example:

$make
 (builds webserver6.elf and webserver6-avr-raven.elf)
$make WEBDIR=huginn
 (builds webserver6.elf and webserver6-huginn-avr-raven.elf)
$make WEBDIR=muninn TARGET=avr-atmega128rfa1
 (builds webserver6.elf and webserver6-muninn-avr-atmega128rfa1.elf)
$make clean WEBDIR=huginn TARGET=avr-atmega128rfa1
 deletes the avr-atmega128rfa1 objects and webserver6-huginn-avr-atmega128rfa1.elf
$make clean
 deletes the avr-raven objects and webserver6-avr-raven.elf
 
$make WEBDIR=xxx always forces regeneration of web content into httpd-fsdata.c and
so requires PERL. A bare $make after that will not regenerate httpd-fsdata.c.
Use $make WEBDIR=default to switch back to the default /http-fs/ content.