					Last updated: 9/18/97 D.Beyer

This directory tree contains example skeletal radio device driver and
protocol code that demonstrate the GloMo Radio API.  This example was
created by Dave Beyer, Rooftop Communications Corp, and Mark Lewis,
SRI International.

This simple example protocol module initializes and configures the radio
transmits 10 packets, and prints the contents of each packet received.  The
simple example driver loops back each packet transmitted to the receiver.


To extract, compile, and run
----------------------------

	tar xvf skel_rad.tar
	cd example
	<Modify Make.defs if necessary>
	gnumake
	cd bin
	my_proto


Directory structure
-------------------

README			This file

Make.defs		Platform-dependent definitions for this skeletal code
Makefile		Skeletal code makefile

bin/			Where example program is installed

dev/			
	Makefile

	dev_env.h	Environment-dependent header file

	my_rad.c	Radio device driver code
	my_rad.h	"Public" Radio-specific header file

	my_radpr.h	private, implementation header file
	my_stubs.c	private, implementation (stub routines)

proto/
	Makefile

	my_proto.c	Example protocol code

include/
	dev.h		Standard, Generic device driver header file
	rad_api.h	Standard, Radio API header file

	env/		Where my_rad.h and dev_env.h are installed

lib/			Where device driver library is installed 


	


