- May 15, 2018
-
-
Alexandre Abadie authored
-
- May 14, 2018
-
-
Alexandre Abadie authored
cpu/cc2538: remove obsolete periph file guard
-
Koen Zandberg authored
boards/common/atmega: gracefully handle CKDIV8 fuse
-
Kaspar Schleiser authored
gnrc/netif/hdr.h: Optimized structure layout
-
Marian Buschsieweke authored
Reordered struct members to not waste memory due to padding. Before: ``` C typedef struct { uint8_t src_l2addr_len; uint8_t dst_l2addr_len; kernel_pid_t if_pid; // <-- 16 bit, is aligned to 16 bit uint8_t flags; uint8_t __padding_byte; // <-- Inserted to fulfill padding requirements int16_t rssi; // <-- 16 bit, is NOT aligned to 16 bit uint8_t lqi; uint8_t __padding_byte2;// <-- Inserted to fulfill padding requirements } gnrc_netif_hdr_t; ``` Now: ``` C typedef struct { uint8_t src_l2addr_len; uint8_t dst_l2addr_len; kernel_pid_t if_pid; // <-- 16 bit, is aligned to 16 bit uint8_t flags; uint8_t lqi; int16_t rssi; // <-- 16 bit, is aligned to 16 bit } gnrc_netif_hdr_t; ``` When build for the `bluepill` board, the new layout reduces the size by 2 bytes.
-
Kaspar Schleiser authored
makefiles/info.inc.mk: add a info-debug-variable-% target
-
Bas Stottelaar authored
tests: unittests: disable for new efm32 boards.
-
Cenk Gündoğan authored
cpu/cortexm: explicitly set -march=armv6s-m for crotexm0(plus)
-
Alexandre Abadie authored
drivers/io1_xplained: improve driver and add support for the sdcard and light sensor
-
Alexandre Abadie authored
drivers: add driver for FXOS8700 3-axis accelerometer/magnetometer
-
- May 13, 2018
-
-
Bas Stottelaar authored
-
Hyungsin authored
-
- May 12, 2018
-
-
Kaspar Schleiser authored
enc28j60: fix compilation with l2 stats enabled
-
Kaspar Schleiser authored
cpu/nrf5x: define nrfmin feature in nrf5x_common
-
Kaspar Schleiser authored
tests/mutex_unlock_and_sleep: increase timeout
-
Kaspar Schleiser authored
sys/icmpv6_hdr_print: replace PRIu8 by PRIu16
-
- May 11, 2018
-
-
Kaspar Schleiser authored
Works around a regression in gcc 8.1. See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85606.
-
Joakim Nohlgård authored
cortexm: const ISR vectors
-
Kaspar Schleiser authored
tests/trickle: initialize prev_now in main
-
Gaëtan Harter authored
tests/pkg_cayenne_lpp: fix inconsistent buffer values across architectures (native, boards)
-
Gaëtan Harter authored
dist/testbed-support: use new cli-tools command names
-
Alexandre Abadie authored
- generated payloads can differ between architectures due to floating precision - reworked how buffer content is tested in the application - second test value depends on architecture (native and other platforms)
-
Gaëtan Harter authored
boards/iotlab: fix saul gpio configuration
-
Gaëtan Harter authored
release notes 2018.04 typo fix
-
Kaspar Schleiser authored
-
Gaëtan Harter authored
Having `prev_now` initialized to 0 breaks tests on `arduino-zero` and `arduino-mega2560` as `xtimer_now_usec` is way bigger (72k on `arduino-zero`). Issue found in: * #9052 and proposed fix by ZetaR60 * https://github.com/RIOT-OS/Release-Specs/issues/62#issuecomment-387421737
-
Gaëtan Harter authored
PRIu8 is not supported on samr21-xpro: type: hu code: hu After fix type: 133 code: 0 Found by running 'tests/gnrc_netif'
-
Kaspar Schleiser authored
add 2018.04 release notes
-
Kaspar Schleiser authored
-
- May 09, 2018
-
-
Gaëtan Harter authored
crypto/ccm: fix input_len checking with length_encoding
-
Gaëtan Harter authored
examples/gnrc_border_router: use RIOTTOOLS variable
-
Gaëtan Harter authored
Follow up to #9067 and part of #8821
-
Alexandre Abadie authored
Makefile.include: use RIOTTOOLS variable for included files
-
Gaëtan Harter authored
-
Gaëtan Harter authored
-
Gaëtan Harter authored
-
Kaspar Schleiser authored
tests/libfixmath_unittests: fix for iotlab-m3 and samr21-xpro
-
Kaspar Schleiser authored
cpu: ldscript memory attribute corrections
-
Kaspar Schleiser authored
cpu/stm32f4: add support for STM32F423 line
-
Joakim Nohlgård authored
-