[riot-devel] RIOT Core Development Project

2016-09-21 Thread Pss Srivignessh
Sir, I am Srivignessh Pss, MS CE Arizona State University. I am looking for a development project of RIOT for my Advanced Operating Systems course. Can you suggest me few domains to work. I found currently it is not supported on Intel Galileo Board. Is it a good area to start with Thank you Sriv

Re: [riot-devel] RIOT Core Development Project

2016-09-21 Thread Michael Frey
Hi, Am Mi, 21.09.2016, 05:44, schrieb Pss Srivignessh: > Can you suggest me few domains to work. I found currently it is not > supported on Intel Galileo Board. Is it a good area to start with imho instead of supporting yet another board it might be more interesting to pick one of the project id

Re: [riot-devel] RIOT Core Development Project

2016-09-21 Thread Emmanuel Baccelli
Hi Srivignessh, improving x86 support in RIOT is a not such a bad idea, in my opinion. If you are interested in this however, instead of the Galileo board, I would suggest working on support for Arduino 101 [1]. The first step would be to provide initial support i.e. to have the bare minimum for t

[riot-devel] GNRC_NETWORKING

2016-09-21 Thread Ilias Seitanidis
Hi all, I am using the gnrc BR and I have another node running the gnrc_networking example. I did some modifications on the main.c of the gnrc_networking, I replaced the lines 44-46 [1] with the line: _netif_config(0, NULL); . After that I execute some threads. My question is why I cannot ping th

Re: [riot-devel] GNRC_NETWORKING

2016-09-21 Thread smlng
Hi Ilias, you removed the shell, and doing so you also removed the main loop. So basically your program hits return 0 and terminates - which likely happens very fast after reboot. With this the RIOT-Kernel, network stack and everything stops working, so no logic remains to answer any pings or s

Re: [riot-devel] GNRC_NETWORKING

2016-09-21 Thread Oleg Hahm
Hi Sebastian! On Wed, Sep 21, 2016 at 02:50:31PM +0200, smlng wrote: > you removed the shell, and doing so you also removed the main loop. So > basically your program hits return 0 and terminates - which likely happens > very fast after reboot. With this the RIOT-Kernel, network stack and > everyt

Re: [riot-devel] GNRC_NETWORKING

2016-09-21 Thread smlng
Hi Oleg, you're probably right; I also missed that and also ignored Ilias statement: > After that I execute some threads. @Ilias: what are those threads doing, are they working as expected? Best, Sebastian > Am 21.09.2016 um 15:13 schrieb Oleg Hahm : > > Hi Sebastian! > > On Wed, Sep 21,

Re: [riot-devel] GNRC_NETWORKING

2016-09-21 Thread Ilias Seitanidis
Thank you all for your replies, @Sebastian, I have the loop in the udp.c and when I use the make term I see that one of my threads is running. That's the strange thing!!! ___ devel mailing list devel@riot-os.org https://lists.riot-os.org/mailman/listinfo/

Re: [riot-devel] GNRC_NETWORKING

2016-09-21 Thread Ilias Seitanidis
@ Sebastian the first one is the udp.c where I execute an interval so every 2 minutes I send a message. The second one is empty right now. ___ devel mailing list devel@riot-os.org https://lists.riot-os.org/mailman/listinfo/devel