mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-04 23:14:06 +02:00
Merge branch 'master' of projects.qi-hardware.com:ben-wpan
This commit is contained in:
commit
848e5af33a
2
TODO
2
TODO
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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/
|
||||
|
Loading…
Reference in New Issue
Block a user