- Feb 12, 2019
-
-
Cenk Gündoğan authored
gnrc_ipv6_nib: fix preparation of delayed NA
-
Juan I Carrano authored
tests/periph_eeprom: use EEPROM_CLEAR_BYTE
-
Gaëtan Harter authored
gnrc_ipv6_nib/arsm: ensure proper int width in backoff calculation
-
Martine Lenders authored
dist/tools: Add script for backporting PR's
-
Martine Lenders authored
-
Martine Lenders authored
This was primarily done so the backoff can be tested
-
Martine Lenders authored
Otherwise, the result might flow over on 8/16-bit platforms
-
Gaëtan Harter authored
After being cleared, the memory can be `0xFF` for `atmega` platforms for example. Fix the test to take EEPROM_CLEAR_BYTE into account.
-
Gaëtan Harter authored
`strcmp` was used to check that the 4 bytes were empty but was not testing what it should as an empty string is `0` bytes long. The whole must be verified.
-
Gaëtan Harter authored
Use `memcmp` where it is obvious it is not doing a string comparison.
-
Gaëtan Harter authored
Casting to `const char *` is not necessary as input, the type are already the right ones. It could not be before as `result` was with the wrong type.
-
Gaëtan Harter authored
Results type should only be an array of char, not an array of pointers.
-
Gaëtan Harter authored
Adapt tox file from `compile_and_test_for_board.py`. `tox` is still not working without errors but gives way to start refactoring.
-
Koen Zandberg authored
This script provides functionality to easily backport a merged pull request to a release branch. It relies of having a `github` API token stored in `~/.riotgithubtoken` by default. The script works by fetching information from the supplied **merged** pull request. It then looks for the last release branch. A temporary git `worktree` with a new branch is created based on this release branch. All commits from the pull request are then cherry-picked into this branch which is then pushed to `origin`. It then creates a new pull request on `github` with a reference to the original pull request. It optionally puts a comment under the original pull request to the new backport pull request. Co-authored-by:
Gaëtan Harter <gaetan.harter@fu-berlin.de>
-
Juan I Carrano authored
sys/shell: ensure character is flushed when echoing.
-
Martine Lenders authored
Currently the constructed NA for a delayed NA case is neither used nor released nor does it get an IPv6 header to be used properly. This fixes that case.
-
Cenk Gündoğan authored
gnrc_ipv6_nib: fix iteration conditions for cache-out
-
Peter Kietzmann authored
gnrc_tcp: syn_rcvd pkt loss fix
-
Martine Lenders authored
Documentation: fix dead links
-
Juan I Carrano authored
pyterm: use python3 by default
-
Martine Lenders authored
When working on the previous commit I was unsure if a garbage-collectible entry should remain in the list, so I added this comment so I don't have to wonder about this in the future ;-).
-
Martine Lenders authored
-
Yegor Yefremov authored
The link to nodemcu-devkit-v1.0 was missing 'h' in 'http'. Other links were missing 'http://' or 'https://' and were pointing to non-existing components on RIOT's web site. Signed-off-by:
Yegor Yefremov <yegorslists@googlemail.com>
-
Cenk Gündoğan authored
gnrc_ipv6_nib: release packet when NC entry can't be added
-
Martine Lenders authored
net/sixlowpan: Fixed calculation of fragment size
-
Marian Buschsieweke authored
Fragment size calculation previously failed for devices that are able to transmit bigger layer 2 PDUs that 802.15.4 devices. This commit fixes the issue.
-
- Feb 11, 2019
-
-
Alexandre Abadie authored
gnrc_ipv6_nib/nc: remove from _next_removable on remove
-
Gaëtan Harter authored
Python3 has been the default in our scripts for some time now, but pyterm still requested python which uses python2 on ubuntu stable. This pushes toward only needing to install `python3` python dependencies.
-
Kevin "Bear Puncher" Weiss authored
periph/uart: improve documentation
-
Peter Kietzmann authored
gnrc_netif_ieee802154: drop duplicate broadcast packets (optionally)
-
Yegor Yefremov authored
Change description to reflect the configurability of the serial interface. Also, fix the uart_mode parameter description as the UART will be configured and not initialized. Signed-off-by:
Yegor Yefremov <yegorslists@googlemail.com>
-
- Feb 08, 2019
-
-
ZetaR60 authored
atmega: refactor cpu/board code and build/flash variables
-
Martine Lenders authored
To make the CI happy ;-).
-
Martine Lenders authored
When the neighbor cache is full, the packet trying to resolve a neighbor is not released. This change fixes that.
-
Martine Lenders authored
-
Juan I Carrano authored
sys/ps: Fixed stringification
-
Martine Lenders authored
The `_next_removable` list manages the cache-out of the neighbor cache. However, when a neighbor cache entry is removed, it is not removed from that list, which may lead to a segmentation fault when that list is accessed, since the whole entry (including its list pointer) is zeroed after removal. With this change the entry is removed from that list accordingly before the zeroing happens.
-
Juan I Carrano authored
makefiles/toolchain: fix command -v multiple commands
-
Kevin "Bear Puncher" Weiss authored
drivers/bmx280: fix dead links
-
Yegor Yefremov authored
URLs have been changed to: https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMP280-DS001.pdf https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME280-DS002.pdf ) Signed-off-by:
Yegor Yefremov <yegorslists@googlemail.com>
-