- Feb 08, 2019
-
-
Martine Lenders authored
When the neighbor cache is full, the packet trying to resolve a neighbor is not released. This change fixes that.
-
- Feb 06, 2019
-
-
Peter Kietzmann authored
drivers: add support for SHT2x (I2C temp and humidity sensor)
-
Kevin "Bear Puncher" Weiss authored
cpu/stm32_common: fix UART documentation
-
Martine Lenders authored
gnrc: nib: fix DOXYGE -> DOXYGEN typo
-
Kaspar Schleiser authored
-
Yegor Yefremov authored
Don't include overridden typedefs into doxygen as otherwise, they'll appear twice. Signed-off-by:
Yegor Yefremov <yegorslists@googlemail.com>
-
- Feb 05, 2019
-
-
Kees Bakker authored
Several parts were inspired by a driver written by: George Psimenos (gp7g14@soton.ac.uk) Steffen Robertz (steffen.robertz@rwth-aachen.de)
-
Sebastian Meiling authored
cpu/esp32: GPIO macro cleanup in periph_cpu.h
-
Peter Kietzmann authored
gnrc_sixlowpan_iphc: fix _compressible()
-
Martine Lenders authored
tests/gnrc_tcp_*: remove default PORT for native
-
Cenk Gündoğan authored
shell_commands: adapt ping6 to original-ping-like implementation
-
Martine Lenders authored
drivers/w5100: Fixed netdev_driver_t::recv() API
-
Martine Lenders authored
When either `gnrc_sixlowpan_iphc_nhc` or `gnrc_udp` is not compiled in `_compressible()` never returns `true`. This causes the `dispatch` snip in `gnrc_sixlowpan_iphc_send()` to be of length 0, meaning `dispatch->data` is `NULL`, causing possible crashes when trying to send IPv6 packets over 6LoWPAN without NHC or UDP.
-
Peter Kietzmann authored
-
Peter Kietzmann authored
-
Kaspar Schleiser authored
cpu/fe310: Add call to periph_init()
-
- Feb 04, 2019
-
-
Martine Lenders authored
sam0_common: check ADC_NUMOF on adc_init()
-
Kees Bakker authored
cpu/sam0_common: update README for SAML1x addition
-
Gunar Schorcht authored
The default macros GPIO_PIN and GPIO_UNDEF do not have to be overridden. The GPIO_PIN macro definition was even wrong for 40 GPIOs without splitting into ports, even if that did not lead to erroneous behavior.
-
Peter Kietzmann authored
Fix hdc1000 renew interval documentation
-
Kevin "Bear Puncher" Weiss authored
chacha20poly1305: Initial implementation of AEAD cipher.
-
Martine Lenders authored
Loosely based on [the original ping] and [netutil]'s ping New features (compared to old RIOT version): - non-positional parameters - Better duplicate detection (addresses #9387) - Better asynchronous behavior - Potential for future move to `sock_ip` - (Optional) DNS-support - Multithreading-safe (in case shell-command handler gets called from multiple threads) [the original ping]: http://ftp.arl.army.mil/~mike/ping.html [netutil]: https://www.gnu.org/software/inetutils/
-
Silke Hofstra authored
The documentation refers to the `HDC1000_PARAM_RENEW_INTERVAL` as `HDC1000_RENEW_INTERVAL`.
-
Peter Kietzmann authored
drivers/cc110x: Fixed MTU calculation
-
Koen Zandberg authored
Add a test case to the crypto tests testing the chacha20poly1305 algorithm with the test vectors from rfc 8439.
-
Koen Zandberg authored
-
Martine Lenders authored
-
Marian Buschsieweke authored
-
Peter Kietzmann authored
shell/ifconfig: Add L2-PDU info
-
- Feb 01, 2019
-
-
Kees Bakker authored
Rewrite the README to reflect the recent addition of SAMR30 and SAML10/SAML11.
-
Dylan Laduranty authored
sam0 flashpage: wait for READY bit in INTFLAG after write command
-
Martine Lenders authored
release-notes.txt: Add Release 2018.10.1 notes
-
Jose Alamos authored
-
Martine Lenders authored
shell/ifconfig: Fixed stringification
-
Marian Buschsieweke authored
When IPv6 is enabled, the MTU is given. So users(*) sending IPv6 packets can easily figure out what the supported maximum protocol unit is. However, when IPv6 is disabled and a user wants to send layer 2 frames directly, no information about the maximum PDU is available using the shell. When 6LoWPAN is used, a user may be interested in the layer 2 PDU as well in order to avoid layer 2 fragmentation. This PR adds the L2-PDU info to the output of the ifconfig shell command, which is printed regardless of the use of IPv6. (*): Here "users" refers to human beings interacting with the shell. Applications can get the maximum PDU of each layer more easily using gnrc_netapi_get() with NETOPT_MAX_PACKET_SIZE instead of using a shell command.
-
Marian Buschsieweke authored
-
Kaspar Schleiser authored
cpu/native: fix race in thread_yield_higher()
-
Martine Lenders authored
net stats: move layer 2 netstats from netdev driver to gnrc_netif
-
Marian Buschsieweke authored
netdev_driver_t::get(NETOPT_MAX_PACKET_SIZE) used to return the maximum frame size instead of the maximum layer 2 PDU size.
-
Marian Buschsieweke authored
Introduced CC110X_L2_HDR_SIZE to get rid of magic numbers.
-