- Jan 08, 2019
-
-
Martine Lenders authored
While the recursion in `gnrc_sixlowpan_frag` shouldn't be infinite we still should avoid using recursions in general (also to be able to statically analyze stack usage). This unrolls the recursion.
-
Alexandre Abadie authored
core/irq: fix 2 missing words in documentation
-
- Jan 07, 2019
-
-
Alexandre Abadie authored
-
Alexandre Abadie authored
gnrc_tcp_pkt: fix typo in comment
-
Bas Stottelaar authored
cpu: efm32: add support for 32-bit timers
-
Bas Stottelaar authored
-
Bas Stottelaar authored
-
Alexandre Abadie authored
drivers/cc110x: remove irq_disable/irq_restore around spi transfers
-
Martine Lenders authored
Improved docs on module name uniqueness
-
Sebastian Meiling authored
drivers/adxk345: include copy of params in dev struct
-
ZetaR60 authored
cpu/atmega_common/uart: Comment why brr calc is different from datasheet
-
Sören Tempel authored
-
Martine Lenders authored
gnrc_netif: add l2addr members to doc
-
Kevin "Bear Puncher" Weiss authored
board/z1: Fix BTN0_PIN
-
Marinus Enzinger authored
-
Sebastian Meiling authored
drivers/lsm6dsl: eliminate and correct casts
-
Sebastian Meiling authored
drivers/lsm303dlhc: correct cast of phydat_t*
-
Sebastian Meiling authored
tests/driver_at86rf2xx: eliminate cast
-
Sebastian Meiling authored
drivers/ccs811: remove unnecessary casts
-
Sebastian Meiling authored
net/coap: improve message code macros
-
Martine Lenders authored
The `l2addr` and `l2addr_len` members of the `gnrc_netif_t` struct did not show up in the rendered documentation.
-
Cenk Gündoğan authored
gnrc_sixloenc: introduce pseudo-module to send 6Lo frames over Ethernet
-
Martine Lenders authored
gnrc: make titles of NETAPI command documentation more specific
-
Sebastian Meiling authored
tests/xtimer_drift: increase priority of worker
-
Martine Lenders authored
-
Martine Lenders authored
-
Sebastian Meiling authored
gnrc_ipv6: make gnrc_netapi documentation more detailed
-
MrKevinWeiss authored
The brr calculation on the datasheet is different than what is implmented. This is intentional since it provides better rounding due to truncation. There was no comment explaining that so this comment should prevent confusion.
-
- Jan 06, 2019
-
-
ZetaR60 authored
drivers/ads101x: eliminate casts
-
Kees Bakker authored
The read functions have a mpu9150_results_t* argument which is a struct with 3 int16_t members. Thus we should cast res->val instead of just res.
-
Kees Bakker authored
The read functions have a mma8x5x_data_t* argument which is a struct with 3 int16_t members. Thus we should cast res->val instead of just res.
-
Kees Bakker authored
The read functions have a mag3110_data_t* argument which is a struct with 3 int16_t members. Thus we should cast res->val instead of just res.
-
Kees Bakker authored
The read functions have a mma7660_data_t* argument which is a struct with 3 int16_t members. Thus we should cast res->val instead of just res.
-
Kees Bakker authored
This follows the usual convention of having the whole params in the device struct instead of a pointer-to. This also eliminates the need to cast a const to a non-const pointer in the init function.
-
Kees Bakker authored
The read functions have a lsm303dlhc_3d_data_t* argument which is a struct with 3 int16_t members. Thus we should cast res->val instead of just res.
-
Kees Bakker authored
Converting phydat_t* to lsm6dsl_3d_data_t* is not correct, but it happened to just work because the first struct member of phydat_t will be used. Furthermore, casting &res[0] to int16_t* is wrong. Again, it just happened to work.
-
Kees Bakker authored
-
- Jan 05, 2019
-
-
Ken Bannister authored
-
Ken Bannister authored
-
- Jan 04, 2019
-
-
Martine Lenders authored
-