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

2016-03-03 Thread Oleg Hahm
Hi Bernhard! I think looking at boards/iotlab-m3/Makefile.dep and examples/default/Makefile may help to understand which modules are necessary. On the one hand you need either to add a default transceiver to your board configuration, e.g. by adding something like ifneq (,$(filter gnrc_netif_defau

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 Mar

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

2016-03-02 Thread Peter Kietzmann
Hi Bernhard, I will check it later that day. Just for clarification: You are running examples/gnrc_networking with the current RIOT master on the iotlab-m3 node and the network interface (at86rfxx) is not listed with `ifconfig`? This line in the applications Makefile should auto-initialize th

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 no

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 |main

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 themsel

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