Update of /cvsroot/firebug/fireboard/beta/apps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27692
Modified Files:
Makelocal
Log Message:
Remove group and frequency setting. Suggest Environment variables.
Index: Makelocal
===================================================================
RCS file: /cvsroot/firebug/fireboard/beta/apps/Makelocal,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Makelocal 19 Jun 2005 19:09:26 -0000 1.1
--- Makelocal 4 Jul 2005 03:28:24 -0000 1.2
***************
*** 1,6 ****
! DEFAULT_LOCAL_GROUP=0x7d
! CFLAGS += -DCC1K_DEFAULT_FREQ=CC1K_433_002_MHZ
CFLAGS += -DRADIO_XMIT_POWER=0xFF
--- 1,14 ----
+ # The group and frequency are now expected as environment variables
+ # This allows different people to set them differently without changing
+ # the underlying source. The following is typical:
+ #
+ # export CFLAGS=-DCC1K_DEFAULT_FREQ=CC1K_915_998_MHZ
+ # export DEFAULT_LOCAL_GROUP=0x7d
+ #
+ #
! # DEFAULT_LOCAL_GROUP=0x7d
! # CFLAGS += -DCC1K_DEFAULT_FREQ=CC1K_433_002_MHZ
CFLAGS += -DRADIO_XMIT_POWER=0xFF
|