- May 28, 2018
-
-
Matthew Blue authored
-
Matthew Blue authored
-
- May 17, 2018
-
-
Cenk Gündoğan authored
sys/uart_stdio: compile with -Wno-cast-function-type
-
Kaspar Schleiser authored
-
- May 15, 2018
-
-
Francisco Acosta authored
tests: add more hardware in the loop tests
-
Kaspar Schleiser authored
native: define PROVIDES_PM_SET_LOWEST
-
Kaspar Schleiser authored
pkg/libcose: Use RIOT random_bytes instead of randombytes
-
Kaspar Schleiser authored
pkg/hacl: Use RIOT random_bytes instead of randombytes
-
Kaspar Schleiser authored
pkg/tweetnacl: Use RIOT random_bytes instead of randombytes
-
Kaspar Schleiser authored
core: make assert() an expression.
-
Francisco Acosta authored
-
Joakim Nohlgård authored
-
Joakim Nohlgård authored
-
Joakim Nohlgård authored
-
Alexandre Abadie authored
tests/unittests: add empty list clist_foreach case
-
Alexandre Abadie authored
examples/filesystem: fix typos and cleanup
-
Alexandre Abadie authored
-
Gaëtan Harter authored
Add clist_foreach empty list test case which should: * not call `func` * return `NULL`
-
Alexandre Abadie authored
core/clist: make clist_foreach() return break-causing node
-
Juan Carrano authored
The "verbose" alternative for assert() is now an expression and can be used in all the places that a funcion call can be used.
-
Kaspar Schleiser authored
tools/check: use RIOTTOOLS variable
-
Loïc Dauphin authored
boards/nucleo-l496zg: add initial support
-
Alexandre Abadie authored
-
Alexandre Abadie authored
-
Alexandre Abadie authored
-
Joakim Nohlgård authored
-
- May 14, 2018
-
-
Alexandre Abadie authored
cpu/cc2538: remove obsolete periph file guard
-
Koen Zandberg authored
boards/common/atmega: gracefully handle CKDIV8 fuse
-
Gaëtan Harter authored
Follow up to #9067 and part of #8821
-
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
-