1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-07-01 03:26:23 +03:00

Merge branch 'master' of projects.qi-hardware.com:ben-wpan

This commit is contained in:
Werner Almesberger 2011-07-04 14:46:55 -03:00
commit 848e5af33a
4 changed files with 16 additions and 8 deletions

2
TODO
View File

@ -38,8 +38,6 @@ Current stuff
- atusb/fw/: remove obsolete atusb requests
- auto-detect whether the dependencies for bulding dirtpan are met
- write GETTING-STARTED similar to what we had for gta02-core
- properly report EPERM if not running as root

View File

@ -15,9 +15,8 @@
3. Build the user space tools of the linux-zigbee project
wget http://ufpr.dl.sourceforge.net/project/linux-zigbee/linux-zigbee-sources/0.2.2/lowpan-tools-0.2.2.tar.gz
tar xfz lowpan-tools-0.2.2.tar.gz
cd lowpan-tools-0.2.2
./configure
git clone git://linux-zigbee.git.sourceforge.net/gitroot/linux-zigbee/linux-zigbee
cd linux-zigbee
./autogen.sh
make
make install

View File

@ -12,7 +12,17 @@
BEN_DIRS=atrf-gpio atrf-id atrf-path atrf-proxy atrf-reset \
atrf-rssi atrf-trim atrf-txrx atrf-xmit atrf-xtal #dirtpan
atrf-rssi atrf-trim atrf-txrx atrf-xmit atrf-xtal
ifneq ($(wildcard ../install/lowpan-tools-0.2.2/include/ieee802154.h),)
DIRTPAN := dirtpan
endif
ifneq ($(wildcard ../install/linux-zigbee/include/ieee802154.h),)
DIRTPAN := dirtpan
endif
BEN_DIRS += $(DIRTPAN)
DIRS=$(BEN_DIRS) usbwait
TARGET_ONLY_DIRS=lib

View File

@ -15,4 +15,5 @@ MAIN = dirtpan
include ../Makefile.common
CFLAGS += -I. -I../../install/lowpan-tools-0.2.2/include/
CFLAGS += -I. -I../../install/lowpan-tools-0.2.2/include/ \
-I../../install/linux-zigbee/include/