[Linux-zigbee-devel] Setting IRQ Type for at86rf230

2013-01-15 Thread Sascha Herrmann
Hi, I managed to connect the rf230 chip (using one Module from the Atmel RZ600 Kit) to an Raspberry Pi with some success. One problem I had with this, is that GPIO Interrupt for the rf230 must be set to IRQ_TYPE_EDGE_RISING. Without setting the type the bcm2708 GPIO code doesn't activate the inter

[Linux-zigbee-devel] [PATCH 0/2] Handle Uncompressed IPv6 on 6LoWPAN

2013-01-15 Thread Alan Ott
This has been tested by exchanging data with with the Contiki operating system using a Redwire Econotag. Contiki had to be set to send uncompressed data, and had to have a #define modified to enable reception and processing of header-compressed packets when not set to send compressed data. Alan O

[Linux-zigbee-devel] [PATCH 2/2] 6lowpan: Handle uncompressed IPv6 packets over 6LoWPAN

2013-01-15 Thread Alan Ott
Handle the reception of uncompressed packets (dispatch type = IPv6). Signed-off-by: Alan Ott --- net/ieee802154/6lowpan.c | 41 - 1 file changed, 32 insertions(+), 9 deletions(-) diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c index 1714c

[Linux-zigbee-devel] [PATCH 1/2] 6lowpan: Refactor packet delivery into a function

2013-01-15 Thread Alan Ott
Refactor the handing of the skb's to the individual lowpan devices into a function. Signed-off-by: Alan Ott --- net/ieee802154/6lowpan.c | 38 -- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.