- Feb 04, 2019
-
-
Martine Lenders authored
-
- Feb 01, 2019
-
-
Sebastian Meiling authored
This the first step in moving the collection of layer 2 netstats from the low level driver to a central location, ie. gnrc_netif, to avoid code duplication.
-
- Jan 09, 2019
-
-
Gunar Schorcht authored
Use the `gnrc_netif_t::pid` member instead of the pid of the current thread when generating the the `gnrc_netif_hdr` in `gnrc_netif_ieee802154::_recv` function.
-
- Dec 05, 2018
-
-
Martine Lenders authored
-
- Oct 26, 2018
-
-
Joakim Nohlgård authored
Useful in sniffer situations to see the signal strength of a received packet. Also avoids the crash described in https://github.com/RIOT-OS/applications/pull/54
-
- Oct 03, 2018
-
-
Koen Zandberg authored
This replaces the netif->state accesses in netif::recv with a netdev call and the new netif RAWMODE flag
-
- Aug 13, 2018
-
-
Joakim Nohlgård authored
Set frame pending bit in IEEE 802.15.4 FCF when GNRC_NETIF_HDR_FLAGS_MORE_DATA is set on the netif header on outbound frames.
-
- Jul 12, 2018
-
-
Koen Zandberg authored
This adds a netdev recv call to indicate that the received frame should be dropped when there is no buffer space available to store the frame.
-
- Mar 06, 2018
-
-
Kaspar Schleiser authored
-
- Feb 03, 2018
-
-
Sören Tempel authored
-
- Dec 05, 2017
-
-
Koen Zandberg authored
-
Koen Zandberg authored
-
- Nov 17, 2017
-
-
Martine Lenders authored
-
Martine Lenders authored
-
- Nov 01, 2017
-
-
zhuoshuguo authored
-
- Oct 10, 2017
-
-
Martine Lenders authored
-
- Jun 09, 2017
-
-
zhuoshuguo authored
-
- May 18, 2017
-
-
Hauke Petersen authored
-
- Mar 15, 2017
-
-
Martine Lenders authored
With some minor hand-edits I used the following chain of commands: ```sh git rm sys/include/net/gnrc/netdev.h git grep --name-only -i netdev2 | \ xargs sed -i -e 's/^\(NETDEV\)2\(.*\)\( [("]\)/\1\2 \3/g' \ -e 's/\(netdev\)2\(.*\)\( \/\*\*<\)/\1\2 \3/I' \ -e 's/\(netdev\)2/\1/gI' git add -p git commit --amend git ls-tree --full-tree -r HEAD --name-only | \ grep "netdev2" | xargs -I'{}' dirname '{}' | uniq | \ grep "netdev2" | while read dir; do new_dir="$(echo "$dir" | sed "s/netdev2/netdev/g")" git mv -f "$dir" "$new_dir" done git commit --amend git ls-tree --full-tree -r HEAD --name-only | \ grep "netdev2" | while read file; do new_file="$(echo "$file" | sed "s/netdev2/netdev/g")" git mv -f "$file" "$new_file" done git commit --amend git grep --name-only "\<drivers_netdev_netdev\>" | \ xargs sed -i "s/\<drivers_netdev_netdev\>/drivers_netdev_api/g" git add -p git commit --amend ```
-
- Sep 30, 2016
-
-
Martine Lenders authored
-
- Apr 10, 2016
-
-
kYc0o authored
-
- Mar 29, 2016
-
-
Oleg Hahm authored
-
- Mar 16, 2016
-
-
Martine Lenders authored
`res` is used to set the frame header iovec's length afterwards so overriding it with a negative number is kind of a bad idea ;-).
-
- Mar 15, 2016
-
-
Martine Lenders authored
-