[riot-devel] Auto-configure interface on RIOT - SAMR21-xpro

2016-07-05 Thread ALESSANDRO NICOLI
Hi all, i'm wondering how i could define an auto-configuration for the 802.15.4 interface (on boot) for my "microcoap_server" example. At now i'm using this configuration (set up by shell) // Channel ifconfig 6 set channel 12 // Global IPv6 ifconfig 6 add my_address // Route fibroute 6 add :: vi

Re: [riot-devel] Byte array should be uint8_t, not char

2016-07-05 Thread Kees Bakker
Thank you for the info. It seems that gebart noticed it too :-) There is a fresh reply in #4780. On 04-07-16 19:49, Joakim Nohlgård wrote: Hi Kees, Like Ludwig wrote, there are some places which haven't followed the coding conventions because the CC weren't as clear before as they are now wi

Re: [riot-devel] Byte array should be uint8_t, not char

2016-07-05 Thread Kees Bakker
Hi Ludwig, Well, it will be a challenge to smootly correct this. There are 16 CPU's that use spi_transfer_byte(s) and 6 drivers. I won't mind creating a PR, but of course I can only test it by building examples for all boards that support SPI. And look at compile errors. Or are there other proce

[riot-devel] Is samr21-xpro SPI working

2016-07-05 Thread Kees Bakker
Hey, Can someone confirm that SPI is working on the samr21-xpro board? I'm trying to make SPI work on my Autonomo board, but I haven't succeeded yet. FYI, I'm also reorganizing the code so there are a lot of parameters that can be of influence. I can't use the current code because the pins and t

Re: [riot-devel] Auto-configure interface on RIOT - SAMR21-xpro

2016-07-05 Thread Martine Lenders
Hi Alessandro, have you assigned a global unicast address to the 6LoWPAN interface on the Raspberry Pi and started the radvd demon normally it should (but maybe Alex Aring can confirm that) it should than start to provide the prefix in the LoWPAN via stateless address auto-configuration. Ideally th

Re: [riot-devel] Is samr21-xpro SPI working

2016-07-05 Thread Baptiste Clenet
I can confirm that it works properly. SPI is used to communicate with the transceiver on samr21-xpro and communication works so SPI works, I used SPI1 also with no problem 2016-07-05 21:50 GMT+02:00 Kees Bakker : > Hey, > > Can someone confirm that SPI is working on the samr21-xpro board? > > I'm

Re: [riot-devel] OpenThread port: IEEE802.15 ACK

2016-07-05 Thread Baptiste Clenet
Jose, is the following PR yours? https://github.com/RIOT-OS/RIOT/pull/5552 What's the status of the PR, are you still working on it? 2016-06-16 17:30 GMT+02:00 Oleg Hahm : > Hi José! > > On Thu, Jun 16, 2016 at 05:18:32PM +0200, Jose Alamos wrote: >> I'm porting the OpenThread stack to RIOT. I hav

Re: [riot-devel] Byte array should be uint8_t, not char

2016-07-05 Thread Ludwig Knüpfer
Hi, gebart is Joakim ;) Cheers, Ludwig Am 5. Juli 2016 21:11:44 MESZ, schrieb Kees Bakker : >Thank you for the info. It seems that gebart noticed it too :-) There >is >a fresh reply in #4780. > > >On 04-07-16 19:49, Joakim Nohlgård wrote: >> Hi Kees, >> Like Ludwig wrote, there are some places

Re: [riot-devel] Byte array should be uint8_t, not char

2016-07-05 Thread Ludwig Knüpfer
Hi Kees, I assume there are more violations than the ones in the SPI drivers... But of course every step forward is great! Testing can be done by the community. We have plans to create a distributed test system with actual hardware attached, but sadly that has not become reality yet. Compilat