Re: [riot-devel] networking

2018-02-26 Thread Peter Kietzmann
Hi Janna, welcome to RIOT! Short answer: Yes and no, but we could need more people working on it :-). Maybe the authors can share further insights. Please have a look at the following efforts: https://github.com/RIOT-OS/RIOT/tree/master/examples/gnrc_networking_mac

[riot-devel] networking

2018-02-24 Thread Janna Om
Hello, i am new in RIOT OS. I want to write an application that uses different mac protocols. I would like to know if there already exist CSMA, TDMA and XMAC implementations in RIOT. Are there any tutorials or examples available about network configurations and communication settings? Thank You

Re: [riot-devel] Networking Module does not appear in process list

2016-03-03 Thread malo
Hello Bernhard, AFAIK autoinit module is enabled by default, just check if you have defined -DMODULE_AT86RF2XX, -DMODULE_AUTO_INIT_GNRC_NETIF and -DMODULE_AUTO_INIT_GNRC_NETIF while compiling. Im not using default toolchain based on Makefiles so Im not that familiar with it... wbr malo On 3

Re: [riot-devel] Networking Module does not appear in process list

2016-03-02 Thread Bernhard Nägele
Hello malo, the output of ps show at me the same as you have posted it here with the exception that there is no at86rfxx. The at86rf2xx driver is compiled - I see it there. And I have no hint - no error message or something like that why it isn't loaded. It seem for me, that at86rf2xx_init is

Re: [riot-devel] Networking Module does not appear in process list

2016-03-02 Thread malo
Hello Bernhard, if you are using rf233 the name of the thread is at86rfxx - check with ps output. you should get something like > ps pid |name | stateQ | pri | stack ( used) | location 1 |idle | pending Q | 15 | 128 ( 96) | 267a 2 |

Re: [riot-devel] Networking Module does not appear in process list

2016-03-02 Thread Bernhard Nägele
Hello Peter, thank you. Just for your understanding - I just tried to make everything exactly as shown in the Iotlab-M3 board but I get not the result which is listed in the readme files or the other documentation. One remark - I think most new RIOT users would resolve their problems by

Re: [riot-devel] Networking Module does not appear in process list

2016-03-02 Thread Peter Kietzmann
Hi Bernhard, without looking into details of your problem, just a quick hint from my side: The mac layer (nomac) and the device driver are running in the same thread which should be automatically initialized in our networking examples. I don't remember the name of the thread out of my head...

[riot-devel] Networking Module does not appear in process list

2016-03-02 Thread Bernhard Nägele
Hello everybody, today I tried to get the at86rf2xx working with my board. I have the following statement in the board's Makefile: ifneq (,$(filter gnrc_netif_default,$(USEMODULE))) USEMODULE += at86rf233 USEMODULE += gnrc_nomac endif I tried all the networking examples but no example