[riot-devel] Raw communication between native nodes

2016-06-22 Thread Jose Alamos
Hi, I was wondering if there's a way to send raw data between nodes running on native. I need to send OpenThread packets between nodes (through a radio abstraction), and I'm having problems with TAP interface since they only process ethernet frames. I tried to hack a little bit (put these OT

Re: [riot-devel] Hardfault when linking OpenThread library

2016-06-20 Thread Jose Alamos
Hi Joakim and Daniel, Thank you for the response. Here's the gist of the .map file: https://gist.github.com/jia200x/55f87ac2d966bafb604fb17ff577a7d8 I'm using a SAMR21-xpro. I have only written the platform abstraction hook functions, so I haven't initialized objects. I'm checking all pointers

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

2016-06-16 Thread Jose Alamos
Hi community, I'm porting the OpenThread stack to RIOT. I have hooks for sending and receiving frames and for transmision/reception "Done" signals (TransmitDone and ReceiveDone) In their examples they are manually checking/sending IEEE802.15 ACK before calling the corresponding Done hook, but

Re: [riot-devel] Bridge border router and 6LowPan interfaces

2016-03-04 Thread Jose Alamos
Hi Bernhard: I think power consumption is a good reason for having a RIOT border router. I worked in some WSNs that measured the isotherm level of snow in a mountain (data sent via GPRS), it was not easy to get there and you don't have power lines. So you need batteries. Considering you are

[riot-devel] Usage of gnrc_pktbuf_mark

2016-03-07 Thread Jose Alamos
Hello community! I'm implementing a PPP stack for communication with a GPRS module. Each PPP frame is different, can carry control data or IP data, and each one has a lot of options and sub options (nested headers, etc). For example, a control frame looks like this: |--HDLC frame--|--LCP

[riot-devel] Generic GSM/UMTS/HSDPA driver

2016-04-28 Thread Jose Alamos
Hi community! I have been working on a SIM900 [1] driver and a PPP stack for allowing GSM internet access in RIOT. The driver has to handle AT commands (for accessing modem's data mode) through UART and manage the PPP connection. Since most mobile devices work in the same way, I was thinking

[riot-devel] Propagation of prefix

2016-05-25 Thread Jose Alamos
Thank you Kaspar! :) I will check it. ___ devel mailing list devel@riot-os.org https://lists.riot-os.org/mailman/listinfo/devel

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

2016-07-06 Thread Jose Alamos
Hi Baptiste Yes, I'm still working on it. I'm planning to show a demo of the port in RIOT summit. Cheers. ___ devel mailing list devel@riot-os.org https://lists.riot-os.org/mailman/listinfo/devel

Re: [riot-devel] LoRa support

2016-10-27 Thread Jose Alamos
Hello cr0s, Thank you for the information. I just noticed Emmanuel asked about the same thing a couple of days ago. Great to hear that! :) We just did some test on the PR and it's working OK for us. We are really interested in the development of the netdev2 adoption for the SX1276 driver. We

[riot-devel] flash command without compiling

2017-04-17 Thread Jose Alamos
Dear RIOTers, I noticed the 'make flash' recompiles everything before flashing. What's the reason behind this? I'm working with some packages that require some time to configure/compile, and everytime I run 'flash' I have to wait the whole process to finish. I cannot even flash 2 boards at the

Re: [riot-devel] Auto init in OpenThread

2017-05-03 Thread Jose Alamos
OK, I will go with the #ifdef proposal. Thanks :) Cheers ___ devel mailing list devel@riot-os.org https://lists.riot-os.org/mailman/listinfo/devel

[riot-devel] Board documentation in Doxygen

2018-04-16 Thread Jose Alamos
Hello, There is this PR [1] about moving all board documentation (specs, how to flash, etc) from the wiki to Doxygen, which I would like to know your thoughts since it's a major change in the RIOT documentation. As stated there, the main motivation is to help developers keep the documentation up