[riot-devel] Help with SODAQ SARA SFF needed

2020-08-25 Thread Oleg Hahm
Hey folks,

I'm currently trying to get RIOT to fly on the SODAQ SARA SFF board.
Unfortunately I'm struggling a little bit with the startup sequence of the
U-Blox module. According to the documentation here:
http://doc.riot-os.org/sodaq-sara-sff_2include_2board_8h.html and the Arduino
samples provided by SODAQ I assumed that I would need to call SARA_ENABLE_ON
and SARA_TX_ENABLE_ON, followed by toggling SARA_R4XX_PWR_ON_PIN, but I still
fail to read the firmware via an AT command. Anyone with experience with the
SODAQ boards and the SARA U-Blox module?

Cheers
Oleg
-- 
panic ("No CPUs found.  System halted.\n");
linux-2.4.3/arch/parisc/kernel/setup.c
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] Help with SODAQ SARA SFF needed

2020-08-25 Thread Leandro Lanzieri
Hi Oleg,

I started a driver for the Ublox device on this branch [1]. It is
limited but it is working on the SODAQ SARA AFF board. I don't know if
the pins change on the SFF version of the board, but you can give it a
try. Hope that helps.

Cheers,
Leandro.

[1]: https://github.com/leandrolanzieri/RIOT/tree/pr/drivers/sara_r410m

On Tue, 2020-08-25 at 15:09 +0200, Oleg Hahm wrote:
> Hey folks,
> 
> I'm currently trying to get RIOT to fly on the SODAQ SARA SFF board.
> Unfortunately I'm struggling a little bit with the startup sequence
> of the
> U-Blox module. According to the documentation here:
> http://doc.riot-os.org/sodaq-sara-sff_2include_2board_8h.html and the
> Arduino
> samples provided by SODAQ I assumed that I would need to call
> SARA_ENABLE_ON
> and SARA_TX_ENABLE_ON, followed by toggling SARA_R4XX_PWR_ON_PIN, but
> I still
> fail to read the firmware via an AT command. Anyone with experience
> with the
> SODAQ boards and the SARA U-Blox module?
> 
> Cheers
> Oleg
-- 
Leandro Lanzieri Rodriguez
Hamburg University of Applied Sciences
Berliner Tor 7, 20099 Hamburg, Germany, Room 4.81c
Dept. Computer Science, Internet Technologies Group
http://inet.haw-hamburg.de/members/leandro-lanzieri
Phone: +49 40 42875 - 8426


signature.asc
Description: This is a digitally signed message part
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


[riot-devel] RIOT Summit 2020 -- Sept. 14-15 -- An Online Event

2020-08-25 Thread Emmanuel Baccelli
Dear RIOTers,

The fifth RIOT Summit  will take place on
September 14-15, 2020.

The event is online. Two days feature single-track presentations,
breakout sessions, and a hands-on coding tutorial. If you
want to attend, please register as soon as possible via
https://riot-summit2020.eventbrite.com/ .

**Talks**

Keynote : "Smaller is Safer" by Andrew S. Tanenbaum.

Further talks will cover IoT Security, IoT Networking,
Energy Management, and IoT Use Cases & Applications.

More speakers: https://summit.riot-os.org/2020/#speakers

**Tutorial**

A half-day webinar will guide newcomers on Day 1
including a series of hands-on activities with RIOT.
No specific hardware necessary, attendees will
be given access to the necessary online tools,
and instructions on required preliminary setup.

**Agenda**

Full program at a glance:
https://summit.riot-os.org/2020/#program

iCal to add in your calendar:
https://calendar.google.com/calendar/ical/hulgsh6e1fvpkorg29vpd22ac4%40group.calendar.google.com/public/basic.ics

**Registration**

Participation at the RIOT Summit is free of charge. However,
registration is required: https://riot-summit2020.eventbrite.com/

**Participation**

This year, due to Covid-19, the RIOT Summit will happen online.
Remote presence & online participation will be via common tools
(e.g., in-browser video conferencing & chat, details to be announced).

**Supporters**

We thank FU Berlin, HAW Hamburg, and Inria for their support.


Looking forward to meet you all online!


-- the Organizers, on behalf of the RIOT community
Contact: sum...@riot-os.org
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


[riot-devel] Help with Modular Network Stack

2020-08-25 Thread nagrawal

Hello everyone,

We at IBR, TU Braunschweig are trying to implement a truly modular 
network stack where different components of the network stack like 
Network layer, transport layer, framer, duty cycling can be interchanged 
with different implementations without touching the code of other 
layers.


The current GNRC implementation is mostly designed around the 
traditional TCP(/UDP)/IPv6 network stack since the neighbor information 
base stores ipv6 addresses, implements NDP and RPL (both designed for 
ipv6).


The goal is to bring the modularity of Contiki-NG's network stack to 
RIOT. The motivation behind this is that we would be able to have many 
more different implementations like Rime and switch between these 
different implementations easily (just a small change in the Makefile). 
Also, from a developer's perspective it would be really easy to 
understand and implement new things in the network stack since he/she 
wouldn't have to understand the implementation details of the other 
components of the network stack.


This logically is supposed to be attained by implementing structs 
representing each part of the network stack (Eg: A common struct for 
routing protocols which has function pointers each routing algorithm 
will have to implement like in [1]).


Could you guys therefore guide towards implementing such a modular 
network stack ?



Regards,
Nishchay Agrawal

[1] 
https://contiki-ng.readthedocs.io/en/latest/_api/structrouting__driver.html

___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] Help with SODAQ SARA SFF needed

2020-08-25 Thread Oleg

Hey Leandro,

that looks very helpful indeed - thanks a lot!

Unfortunately, I still get no response from the modem - but the Arduino 
example isn't working either, so maybe it's a problem with the hardware.


Cheers
Oleg

On 2020-08-25 15:20, Leandro Lanzieri wrote:

Hi Oleg,

I started a driver for the Ublox device on this branch [1]. It is
limited but it is working on the SODAQ SARA AFF board. I don't know if
the pins change on the SFF version of the board, but you can give it a
try. Hope that helps.

Cheers,
Leandro.

[1]: https://github.com/leandrolanzieri/RIOT/tree/pr/drivers/sara_r410m

On Tue, 2020-08-25 at 15:09 +0200, Oleg Hahm wrote:

Hey folks,

I'm currently trying to get RIOT to fly on the SODAQ SARA SFF board.
Unfortunately I'm struggling a little bit with the startup sequence
of the
U-Blox module. According to the documentation here:
http://doc.riot-os.org/sodaq-sara-sff_2include_2board_8h.html and the
Arduino
samples provided by SODAQ I assumed that I would need to call
SARA_ENABLE_ON
and SARA_TX_ENABLE_ON, followed by toggling SARA_R4XX_PWR_ON_PIN, but
I still
fail to read the firmware via an AT command. Anyone with experience
with the
SODAQ boards and the SARA U-Blox module?

Cheers
Oleg

___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel

___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel