Re: [riot-devel] Fragmentation in RIOT

2019-09-04 Thread Martine Lenders
Hi Adel,

And welcome to the RIOT community!

Adel Fuchs  schrieb am Mi., 4. Sep. 2019, 16:13:

> Hi,
>
> * Does RIOT support fragmentation in IPv6?
>

With https://github.com/RIOT-OS/RIOT/pull/11596 and
https://github.com/RIOT-OS/RIOT/pull/11623 merged, fragmentation is
supported by RIOT's default network stack, GNRC.

* Does RIOT support IPv4? If so, does it support fragmentation in IPv4?
>

GNRC does not support IPv4. However you can use LwIP as an alternative.
AFAIK it supports fragmentation, but I am not 100% sure.

Might I ask what you need fragmentation for?




> Thanks,
> Adel
> ___
> 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


Re: [riot-devel] Remote Shell Commands

2019-09-09 Thread Martine Lenders
Hi,

I'm not sure we should migrate the shell to a completely structured output.
Though I can see the benefit of that wrt remote execution via CoAP/CBOR, a
shell should be primarily human readable. However, maybe there is some
middle ground to be found for that. Another interesting read with regards
of input parsing might be this draft by Carsten:
https://tools.ietf.org/html/draft-bormann-t2trg-slipmux-02.

Kind regards,
Martine

Am Mo., 9. Sept. 2019 um 15:41 Uhr schrieb Juan Ignacio Carrano <
j.carr...@fu-berlin.de>:

> Hi,
>
> During the Summit 2019 @vincent-d mentioned the possibility of remotely
> executing shell commands and @HendrikVE had a working shell-over-bluettoth.
>
> I just wanted to point out to you some work in that direction that may
> (or may not) be useful. With the PRs I mention below it should be easier
> to implement something like a CBOR/JSON based interface based on COAP or
> any other protocol.
>
> The first one is PR #10624 by @MrKevinWeiss which tries to define a
> common output format for shell commands. In particular, it provides a
> consistent way of reporting the return code of commands. The tricky part
> here is that it is still text based.
>
> The other is PR #9538 by me where I define some data structures to
> express the arguments to a command and also provide a parser. The parser
> is not important here, but the structures could allow arguments to be
> parsed from a document (e.g. JSON/CBOR/etc) and introspection by making
> the commands self-describing.
>
> Hope you can find that useful.
>
> Regards,
>
> Juan.
> ___
> 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


Re: [riot-devel] Notification: Hack'n'ACK @ Tue Jul 30, 2019 5pm - 10pm (CEST) (RIOT Events)

2019-07-30 Thread Martine Lenders
Hi,

we are all set-up in Berlin. https://meet.jit.si/riot-hacknack

Cheers,
Martine

Am Mo., 29. Juli 2019 um 17:00 Uhr schrieb Google Calendar <
calendar-notificat...@google.com>:

> more details »
> <https://www.google.com/calendar/event?action=VIEW=bGJrNG1mdWNxZG9tY2Y3YzhvOWNnNGNtc2dfMjAxOTA3MzBUMTUwMDAwWiBrM3FsOHNldHY3bDQ4b2Zub2wwdGZ1dTZ0c0Bn=1>
> Hack'n'ACK
> https://meet.jit.si/riot-hacknack
> <https://www.google.com/url?q=https%3A%2F%2Fjitsi.tools.ietf.org%2Friot-hacknack=D=2=AFQjCNGRLw_oWsexewHFmrgnEmXp-RJoRQ>
> *When*
> Tue Jul 30, 2019 5pm – 10pm Central European Time - Berlin
>
> *Where*
> FU Berlin; HAW Hamburg (map
> <https://www.google.com/maps/search/FU+Berlin;+HAW+Hamburg?hl=en>)
>
> *Calendar*
> RIOT Events
>
> *Who*
> •
> Martine Lenders - creator
>
> Invitation from Google Calendar <https://www.google.com/calendar/>
>
> You are receiving this email at the account peterschme...@gmail.com
> because you are subscribed for notifications on calendar RIOT Events.
>
> To stop receiving these emails, please log in to
> https://www.google.com/calendar/ and change your notification settings
> for this calendar.
>
> Forwarding this invitation could allow any recipient to send a response to
> the organizer and be added to the guest list, or invite others regardless
> of their own invitation status, or to modify your RSVP. Learn More
> <https://support.google.com/calendar/answer/37135#forwarding>.
> ___
> 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


[riot-devel] Deprecate NHDP module?

2019-08-09 Thread Martine Lenders
Hi,

I just proposed to deprecate the `nhdp` module [1], due to a stale code
base. If anyone is still using it or interested in maintaining it, please
let us know.

Kind regards,
Martine

[1] https://github.com/RIOT-OS/RIOT/pull/11987
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] How to wait for a thread to end?

2019-07-24 Thread Martine Lenders
Hi,

not 100% sure if this can be done generally (apart from the state checks it
should AFAICS), but have a look how the pthread implementation how it
implements `pthread_join()` [1] which is essentially what you are trying to
do (see pthread_join(3)).

Cheers,
Martine

[1]
https://github.com/RIOT-OS/RIOT/blob/7eb579bf4f921d5246d4dccc80b48c8f2f307d06/sys/posix/pthread/pthread.c#L223-L255

Am Mi., 24. Juli 2019 um 19:06 Uhr schrieb Julian Holzwarth <
julian.holzwa...@fu-berlin.de>:

> Dear riot developers,
>
> while writing tests I want to wait for a thread I created to end. I tried
> something with changing my own priority but it did not work.
>
> How can I wait for a thread to end?
>
> Thank you in advance.
>
> Cheers,
> Julian
>
> ___
> 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


Re: [riot-devel] [riot-users] Release 2019.07

2019-07-25 Thread Martine Lenders
Hi,

Congretulations!

Cheers,
Martine

Am Do., 25. Juli 2019 um 11:46 Uhr schrieb Kevin Weiss <
kevin.we...@haw-hamburg.de>:

> Dear RIOTers,
>
> we are happy to announce the 20th official release of RIOT:
>
> --- * RIOT 2019.07 * ---
>
> The 2019.07 release includes a number of new features including many new
> boards and cpu, riotboot added to many new and old boards, USB is now 
> available,
> BLE improvements, Ethernet on stm32 platforms, as well as many bug fixes and
> documentation updates. Testing has also improved with both On-Target Testing
> increasing and now Hardware Assisted Automated Tests being run.
>
> About 300 pull requests with about 659 commits have been merged since the last
> release and about 50 issues have been solved. 26 people contributed with code
> in 106 days. Approximately 1377 files have been touched with 181993 insertions
> and 19668 deletions.
>
> You can download the RIOT release from Github by cloning the repository
> and checkout the release tag [1] or by downloading the tarball [2], and
> look up the release notes for further details [3].
>
>
> A big thank you to everybody who contributed!
>
> Best regards,
> Kevin Weiss
>
>
> [1]:https://github.com/RIOT-OS/RIOT/tree/2019.07
>
> [2]:https://github.com/RIOT-OS/RIOT/archive/2019.07.tar.gz
>
> [3]:https://github.com/RIOT-OS/RIOT/releases/tag/2019.07
>
> ___
> users mailing list
> us...@riot-os.org
> https://lists.riot-os.org/mailman/listinfo/users
>
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] devel Digest, Vol 79, Issue 14

2019-09-26 Thread Martine Lenders
Hi Adnan,
that tutorial seems horribly outdated. The last major edit before yours
were from 2014 and the fact that it refers to Mint Petra (which itself is
from 2014) is also underlining this. Since then we provided a vagrant
configuration [1] which gets rid of all the manual steps.

Kind regards,
Martine

[1] https://github.com/RIOT-OS/RIOT/blob/master/dist/tools/vagrant/README.md

Am Do., 26. Sept. 2019 um 19:10 Uhr schrieb Adnan Rashid <
adnanrashi...@gmail.com>:

> Hi  Martine,
>
> Please check below link.
>
>
> https://github.com/RIOT-OS/RIOT/wiki/Howto:-Create-a-VirtualBox-Image-for-RIOT-development
>
>
> Moreover, In your documentation, I saw you people implemented RFC-6775.
> Can you please tell me what is the shortcoming in your code? What parts of
> the RFC is not implemented?
>
> Your prompt reply will be appreciated.
>
>
> On Thu, Sep 26, 2019 at 12:00 PM  wrote:
>
>> Send devel mailing list submissions to
>> devel@riot-os.org
>>
>> To subscribe or unsubscribe via the World Wide Web, visit
>> https://lists.riot-os.org/mailman/listinfo/devel
>> or, via email, send a message with subject or body 'help' to
>> devel-requ...@riot-os.org
>>
>> You can reach the person managing the list at
>> devel-ow...@riot-os.org
>>
>> When replying, please edit your Subject line so it is more specific
>> than "Re: Contents of devel digest..."
>>
>>
>> Today's Topics:
>>
>>1. How to Proceed? (Adnan Rashid)
>>2. Re: How to Proceed? (Martine Lenders)
>>
>>
>> --
>>
>> Message: 1
>> Date: Wed, 25 Sep 2019 12:50:03 +0200
>> From: Adnan Rashid 
>> To: devel@riot-os.org
>> Subject: [riot-devel] How to Proceed?
>> Message-ID:
>> > 8+v6ve98dtefmq4wst93ykosa4qdyvwht...@mail.gmail.com>
>> Content-Type: text/plain; charset="utf-8"
>>
>> Hi Support Team,
>>
>> I want to simulate by using RIOT OS. What is the way forward? I had
>> followed your Wiki for the VMware installation, after step 7 I don't know
>> how to use RIOT OS.
>>
>> --
>>
>> Saluti,
>>
>>
>> ADNAN RASHID (Ph.D. Research Scholar)
>> Dpt. Ingegneria dell'Informazione
>> Universit? di Firenze
>>
>> via di S. Marta 3
>> 50139, Firenze-Italia
>>
>> email: adnan.ras...@unifi.it 
>>
>> Cell: (+39) 347 9821467
>>
>> Skype: adnanrashidpk
>>
>> ---
>> -- next part --
>> An HTML attachment was scrubbed...
>> URL: <
>> http://lists.riot-os.org/pipermail/devel/attachments/20190925/6f304ecb/attachment-0001.htm
>> >
>>
>> --
>>
>> Message: 2
>> Date: Wed, 25 Sep 2019 12:56:49 +0200
>> From: Martine Lenders 
>> To: RIOT OS kernel developers 
>> Subject: Re: [riot-devel] How to Proceed?
>> Message-ID:
>> > w...@mail.gmail.com>
>> Content-Type: text/plain; charset="utf-8"
>>
>> Hi Adnan,
>>
>> Can you refer us to the tutorial you are following? I'm not aware of any
>> that describes VMware integration.
>>
>> Kind Regards,
>> Martine
>>
>> Adnan Rashid  schrieb am Mi., 25. Sep. 2019,
>> 12:50:
>>
>> > Hi Support Team,
>> >
>> > I want to simulate by using RIOT OS. What is the way forward? I had
>> > followed your Wiki for the VMware installation, after step 7 I don't
>> know
>> > how to use RIOT OS.
>> >
>> > --
>> >
>> > Saluti,
>> >
>> >
>> > ADNAN RASHID (Ph.D. Research Scholar)
>> > Dpt. Ingegneria dell'Informazione
>> > Universit? di Firenze
>> >
>> > via di S. Marta 3
>> > 50139, Firenze-Italia
>> >
>> > email: adnan.ras...@unifi.it 
>> >
>> > Cell: (+39) 347 9821467
>> >
>> > Skype: adnanrashidpk
>> >
>> >
>> ---
>> > ___
>> > devel mailing list
>> > devel@riot-os.org
>> > https://lists.riot-os.org/mailman/listinfo/devel
>> >
>> -- next part --
>> An HTML attachment was scrubbed...
>> URL: <
>> http://lists.riot-

Re: [riot-devel] [riot-users] Release 2019.10

2019-10-31 Thread Martine Lenders
Woohoo! Congratulations to everyone and thanks Ken for the great work!

Best regards,
Martine

Am Do., 31. Okt. 2019 um 14:29 Uhr schrieb Emmanuel Baccelli <
emmanuel.bacce...@inria.fr>:

> Yay! Congrats to all involved, and thanks a bunch Ken for managing this
> release!
> Cheers
> Emmanuel
>
> On Thu, Oct 31, 2019 at 2:17 PM Ken Bannister  wrote:
>
>> Dear RIOTers,
>>
>> We are happy to announce the 21st official release of RIOT:
>>
>> --- * RIOT 2019.10 * ---
>>
>> The 2019.10 release includes:
>>
>>   - initial support for SUIT firmware updates
>>   - USB CDC-ACM serial communication
>>   - complete rewrite of TI CC110x radio driver
>>   - initial support for IPv6 fragmentation
>>   - DTLS support in the sock networking stack
>>   - complete blockwise messaging for gcoap and nanocoap
>>   - as always, bug fixes and documentation updates
>>
>> About 460 pull requests, composed of 950 commits, have been merged since
>> the
>> last release, and about 60 issues have been solved. 57 people
>> contributed with
>> code in 105 days. Approximately 2000 files have been touched with 129000
>> insertions and 25000 deletions.
>>
>> You can download the RIOT release from Github by cloning the repository
>> and checkout the release tag [1] or by downloading the tarball [2], and
>> look up the release notes for further details [3].
>>
>> A big thank you to everybody who contributed! Special thanks to previous
>> release managers @miri64, @MrKevinWeiss, and @PeterKietzmann for offline
>> advice. Many thanks also to release testers @aabadie, @cladmi, @fjmolinas,
>> @jia200x, @leandrolanzieri, and @smlng.
>>
>> Your friendly neighborhood release manager,
>> Ken Bannister
>>
>>
>> [1] https://github.com/RIOT-OS/RIOT/tree/2019.10
>>
>> [2] https://github.com/RIOT-OS/RIOT/archive/2019.10.tar.gz
>>
>> [3] https://github.com/RIOT-OS/RIOT/releases/tag/2019.10
>>
>> ___
>> devel mailing list
>> devel@riot-os.org
>> https://lists.riot-os.org/mailman/listinfo/devel
>>
> ___
> users mailing list
> us...@riot-os.org
> https://lists.riot-os.org/mailman/listinfo/users
>
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


[riot-devel] Deprecation of `gnrc_nettest`

2019-10-28 Thread Martine Lenders
Hi there,

Jose and I proposed to deprecate `gnrc_nettest` [1]. It was originally
introduced to allow for integration tests of single GNRC modules, but it
never really got used and it is most often easier to just use
`gnrc_netreg_register()/unregister()` directly for that.

In the very unlikely case that anybody is using it, please speak up now!

Best regards,
Martine

[1] https://github.com/RIOT-OS/RIOT/pull/12593
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] Notification: Hack'n'ACK @ Tue Oct 29, 2019 5pm - 10pm (CET) (RIOT Events)

2019-10-28 Thread Martine Lenders
Hi Kaspar,

The official start is still 5pm. Berlin and Paris just start early at 3pm
due to varying reasons.

Best regards,
Martine

PS: "Central European Time - Berlin" is the timezone indicator in the
quoted case ;-).

Am Mo., 28. Okt. 2019 um 20:13 Uhr schrieb Kaspar Schleiser <
kas...@schleiser.de>:

> Hey,
>
> On 10/28/19 5:00 PM, Google Calendar wrote:
> >   Hack'n'ACK
> >
> > /When/
> >   Tue Oct 29, 2019 5pm – 10pm Central European Time - Berlin
>
> Don't they start at 3pm now?
>
> Kaspar
> ___
> 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


Re: [riot-devel] How to Proceed?

2019-09-25 Thread Martine Lenders
Hi Adnan,

Can you refer us to the tutorial you are following? I'm not aware of any
that describes VMware integration.

Kind Regards,
Martine

Adnan Rashid  schrieb am Mi., 25. Sep. 2019, 12:50:

> Hi Support Team,
>
> I want to simulate by using RIOT OS. What is the way forward? I had
> followed your Wiki for the VMware installation, after step 7 I don't know
> how to use RIOT OS.
>
> --
>
> Saluti,
>
>
> ADNAN RASHID (Ph.D. Research Scholar)
> Dpt. Ingegneria dell'Informazione
> Università di Firenze
>
> via di S. Marta 3
> 50139, Firenze-Italia
>
> email: adnan.ras...@unifi.it 
>
> Cell: (+39) 347 9821467
>
> Skype: adnanrashidpk
>
> ---
> ___
> 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


[riot-devel] Deprecation of emb6

2019-10-08 Thread Martine Lenders
Hello,

I just proposed to deprecate emb6 [1] (the OS-independent version of
Contiki's uIP). Is anyone using this package? If yes, please speak up!

Kind regards,
Martine

[1] https://github.com/RIOT-OS/RIOT/pull/12389
___
devel mailing list
devel@riot-os.org
https://lists.riot-os.org/mailman/listinfo/devel


Re: [riot-devel] Updated invitation: Monthly RIOT developer meeting @ Monthly from 4pm to 5pm on the last Monday from Mon Oct 31, 2016 to Sun Sep 29 (CET) (RIOT Events)

2019-10-04 Thread Martine Lenders
FYI, that was me. The meeting didn't take place for a while now and I have
the feeling that this notification for a meeting that does not take place
was confusing some newer contributors. If we re-instate the meeting, we can
always recreate it :-).

Am Fr., 4. Okt. 2019 um 14:41 Uhr schrieb :

> *This event has been changed.*
> more details »
> <https://www.google.com/calendar/event?action=VIEW=NnFpMGh0a2RpajN0OWQ3bjhoa3VmdWdiMTEgazNxbDhzZXR2N2w0OG9mbm9sMHRmdXU2dHNAZw=1>
> Monthly RIOT developer meeting
>
> *When*
> *Changed: *Monthly from 4pm to 5pm on the last Monday from Mon Oct 31,
> 2016 to Sun Sep 29 Central European Time - Berlin
>
> *Where*
> Online (map <https://www.google.com/maps/search/Online?hl=en>)
>
> *Calendar*
> RIOT Events
>
> *Who*
> •
> Martine Lenders - creator
>
> Invitation from Google Calendar <https://www.google.com/calendar/>
>
> You are receiving this email at the account peterschme...@gmail.com
> because you are subscribed for updated invitations on calendar RIOT Events.
>
> To stop receiving these emails, please log in to
> https://www.google.com/calendar/ and change your notification settings
> for this calendar.
>
> Forwarding this invitation could allow any recipient to send a response to
> the organizer and be added to the guest list, or invite others regardless
> of their own invitation status, or to modify your RSVP. Learn More
> <https://support.google.com/calendar/answer/37135#forwarding>.
> ___
> 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


<    1   2   3   4