Benjamin Valentin
737578a7bf
examples/suit_update: allow the use of large MTUs
...
Transfer time is reduced significantly if we can use fewer frames
with large MTUs.
2021-04-11 01:08:11 +02:00
Benjamin Valentin
44fa20dcc0
examples/suit_update: add LinkHeader dependency
...
Aiocoap requires the LinkHeader package to be installed.
2021-04-11 01:08:11 +02:00
iosabi
0c40158eac
cpu/esp8266: Fix typo in esp_gdbstub config.
...
The extra `)` was a typo from the commit that changes the makefile
inline "if" to a multi-line "if" block.
Tested with `USEMODULE="esp_gdbstub" make BOARD=esp8266-esp-12x -C tests/lwip`
2021-04-10 22:49:23 +02:00
iosabi
9974803f43
tests/lwip: Add a test for partial TCP reads.
...
Add a new test to check the behavior of `sock_tcp_read` when more data
is available in the connection than the buffer passed. This test checks
issue #16124 as well as reading from multiple small network packets into
a single buffer.
2021-04-10 17:14:11 +00:00
iosabi
e469f2dea4
lwip_sock: Make sock_tcp_read return data if available
...
When reading from the socket with `sock_tcp_read()` it would only return
data from at most one internal connection buffer, even if the buffer
passed to `sock_tcp_read()` is larger and there is more data available
in the connection. This patch makes `sock_tcp_read` process all the
available data so long as there's more data to read available
immediately.
2021-04-10 18:45:57 +02:00
Benjamin Valentin
eb801ad684
examples/gnrc_border_router: fix wording in Makefile
2021-04-10 01:08:48 +02:00
0397cab91c
Merge pull request #16297 from fjmolinas/pr_sgp30_unused_var
...
drivers/sgp30: unused variable when DEVELHELP=0
2021-04-09 21:54:21 +02:00
benpicco
f157be3426
Merge pull request #16214 from benpicco/examples/gnrc_border_router-eth
...
examples/gnrc_border_router: enable ethernet uplink
2021-04-09 19:36:01 +02:00
Francisco Molina
7079525b35
drivers/sgp30: unused variable when DEVELHELP=0
2021-04-09 18:19:33 +02:00
Fabian Hüßler
f5f2decfa4
nrf24l01p_ng: add hook nrf24l01p_ng_eui_get()
2021-04-09 17:39:40 +02:00
Martine Lenders
6300eb2422
Merge pull request #16230 from fjmolinas/pr_ryot_yaml_runners
...
.github/workflows: add riot-ryot.yml
2021-04-09 17:25:29 +02:00
Francisco Molina
3e20e3b018
.github/workflows: add riot-ryot.yml
...
Add github actions configuration to run all tests on BOARDs
connected to ci-riot-tribe.
Will run on all new Release Candidates and weekly on master.
2021-04-09 16:53:42 +02:00
6ee94bdcdf
Merge pull request #16222 from fjmolinas/pr_driver_sgp30
...
driver/sgp30: initial import
2021-04-09 14:00:38 +02:00
6a69ea0793
Merge pull request #16294 from kaspar030/riotboot_pkg_prepare
...
make: make riotboot target depend on pkg-prepare
2021-04-09 13:26:57 +02:00
668e90adfc
Merge pull request #16292 from kaspar030/clist_is_empty
...
core: add clist_is_empty()
2021-04-09 11:48:48 +02:00
benpicco
17366609cf
Merge pull request #16291 from fjmolinas/pr_suit_use_realeas_aiocoap
...
examples/suit_update: use aiocoap 0.4.1
2021-04-09 11:24:35 +02:00
eca4ff7a04
make: make riotboot target depend on pkg-prepare
...
When riotboot depends on a package for building that the main
application also depends on (e.g., gecko_sdk for efm32), previously,
that package would be checked out twice in parallel, which fails.
This commit adds pkg-prepare as dependency to the bootloader target,
ensuring any packages are already up-to-date before calling the
bootloader submake.
2021-04-09 11:12:58 +02:00
f48aba5035
tests/unittests: add clist_is_empty() test case
2021-04-09 10:54:29 +02:00
020945a773
core/clist: add clist_is_empty()
2021-04-09 10:54:29 +02:00
Francisco Molina
cf9b95fc1d
examples/suit_update: use aiocoap >= 0.4.1
2021-04-09 08:56:55 +02:00
MrKevinWeiss
008660fccf
sys/random: Fix typo in kconfig
2021-04-08 16:44:10 +02:00
MrKevinWeiss
a3075ec0c4
makefiles/info: Add make info-packages command
2021-04-08 16:44:10 +02:00
MrKevinWeiss
450b70e345
tools/kconfiglib: Allow for - in symbols
2021-04-08 16:44:10 +02:00
MrKevinWeiss
13db748fc8
.murdock: Enable pkg kconfig tests
2021-04-08 16:44:10 +02:00
MrKevinWeiss
600e9f4e47
tests/pkg*: Add app.config.test to pkg tests
...
This adds app config to the package tests that are available:
- tests/pkg_c25519
- tests/pkg_cayenne-lpp
- tests/pkg_cifra
- tests/pkg_cn-cbor
- tests/pkg_emlearn
- tests/pkg_hacl
- tests/pkg_heatshrink
- tests/pkg_jsmn
- tests/pkg_libb2
- tests/pkg_libcose
- tests/pkg_libfixmath
- tests/pkg_libhydrogen
- tests/pkg_lora-serialization
- tests/pkg_micro-ecc
- tests/pkg_minmea
- tests/pkg_monocypher
- tests/pkg_nanocbor
- tests/pkg_nanopb
- tests/pkg_qcbor
- tests/pkg_qdsa
- tests/pkg_relic
- tests/pkg_tiny-asn1
- tests/pkg_tinycbor
- tests/pkg_tinycrypt
- tests/pkg_tweetnacl
- tests/pkg_yxml
2021-04-08 16:44:10 +02:00
MrKevinWeiss
6bd6091938
pkg/*/Kconfig: Add simple kconfig pkgs
...
This adds many basic `PACKAGE_*` to Kconfig:
- pkg/Kconfig
- pkg/c25519/Kconfig
- pkg/cayenne-lpp/Kconfig
- pkg/cifra/Kconfig
- pkg/cn-cbor/Kconfig
- pkg/driver_atwinc15x0/Kconfig
- pkg/driver_bme680/Kconfig
- pkg/emlearn/Kconfig
- pkg/gemmlowp/Kconfig
- pkg/hacl/Kconfig
- pkg/heatshrink/Kconfig
- pkg/jsmn/Kconfig
- pkg/libb2/Kconfig
- pkg/libcose/Kconfig
- pkg/libfixmath/Kconfig
- pkg/libhydrogen/Kconfig
- pkg/lora-serialization/Kconfig
- pkg/micro-ecc/Kconfig
- pkg/microcoap/Kconfig
- pkg/minmea/Kconfig
- pkg/monocypher/Kconfig
- pkg/nanocbor/Kconfig
- pkg/nanopb/Kconfig
- pkg/qDSA/Kconfig
- pkg/qcbor/Kconfig
- pkg/relic/Kconfig
- pkg/talking_leds/Kconfig
- pkg/tiny-asn1/Kconfig
- pkg/tinycbor/Kconfig
- pkg/tinycrypt/Kconfig
- pkg/tlsf/Kconfig
- pkg/tweetnacl/Kconfig
- pkg/u8g2/Kconfig
- pkg/ubasic/Kconfig
- pkg/ucglib/Kconfig
- pkg/utensor/Kconfig
- pkg/yxml/Kconfig
2021-04-08 16:34:36 +02:00
benpicco
6ce9db6df8
Merge pull request #16287 from nandojve/avr8_xmega-a3bu_xpld
...
boards: Introduce atxmega-a3bu-xplained board
2021-04-08 13:19:04 +02:00
Marian Buschsieweke
93ba8bea3b
Merge pull request #16286 from fabian18/cc110x_eui_get
...
drivers/cc110x: add hook cc1xxx_eui_get()
2021-04-08 12:51:46 +02:00
Fabian Hüßler
d8affca746
drivers/cc110x: add weak function cc1xxx_eui_get()
2021-04-08 10:38:16 +02:00
Francisco Molina
6c4cb07a2f
tests/driver_sgp30: initial import
2021-04-08 10:14:30 +02:00
Francisco Molina
478624cbb6
driver/sgp30: initial import
2021-04-08 10:14:30 +02:00
Leandro Lanzieri
e7732d9a00
Merge pull request #16217 from fjmolinas/pr_driver_sm_pwm_01c
...
drivers/sm_pwm_01c: initial import
2021-04-08 09:04:38 +02:00
Gerson Fernando Budke
6149531684
boards: Introduce atxmega-a3bu-xplained board
...
Add initial version.
Signed-off-by: Gerson Fernando Budke <nandojve@gmail.com>
2021-04-07 20:06:11 -03:00
Marian Buschsieweke
6fe7164dae
Merge pull request #16285 from maribu/boards/msbiot
...
boards/msbiot: fix param for MPU9150
2021-04-07 16:56:20 +02:00
Marian Buschsieweke
9c77cd8d55
boards/msbiot: fix param for MPU9150
...
When the driver for the mpu9150 has been renamed to mpu9x50, the
corresponding macro in the MSB-IoT board was forgotten to be renamed
as well. This fixes the issue.
2021-04-07 15:18:30 +02:00
Martine Lenders
a433cb9fbe
Merge pull request #16278 from iosabi/lwip_sock_tcp
...
lwip_sock: Fix computation of last_offset on partial reads.
2021-04-07 13:06:45 +02:00
Francisco Molina
a886c311e8
tests/driver_sm_pwm_01c: initial import
2021-04-07 12:05:09 +02:00
Francisco Molina
240c016143
drivers/sm_pwm_01c: initial import
2021-04-07 12:05:09 +02:00
Francisco Molina
424192fbe7
sys/progress_bar: add Konfig configuration
2021-04-07 12:05:00 +02:00
Marian Buschsieweke
ac774f3404
Merge pull request #16212 from nandojve/xmega_pm
...
cpu/atxmega: Add periph power management
2021-04-07 11:45:24 +02:00
04b562780f
Merge pull request #16160 from kfessel/p-block-required
...
sys/ztimer: rename required_pm_mode to block_pm_mode
2021-04-07 11:09:04 +02:00
Martine Lenders
0f60e74200
Merge pull request #16283 from dimka-rs/master
...
tapsetup: fix typo in usage text
2021-04-07 09:53:13 +02:00
chrysn
a8e0ded8ac
Merge pull request #16275 from roh849/nucleo-f303re-i2c-conf
...
boards/nucleo-f303re: fix I2C[1] sda_pin and scl_af settings
2021-04-07 09:37:08 +02:00
Francisco
700046238f
Merge pull request #16261 from maribu/cpu/stm32/periph_eth
...
cpu/stm32/periph_eth: fix format specifier in DEBUG()
2021-04-07 09:32:09 +02:00
Francisco
569e299e63
Merge pull request #16280 from aabadie/pr/driver/flashrom_remove
...
drivers/flashrom: remove deprecated API (since 2017)
2021-04-07 08:49:46 +02:00
Raimund Oude Hengel
030ac02004
boards/nucleo-f303re: fix I2C[1] sda_pin and scl_af settings
2021-04-07 05:43:06 +02:00
Dmitry K
a3984a529f
tapsetup: fix typo in usage text
2021-04-06 21:44:45 +03:00
Dylan Laduranty
db7d0777b8
Merge pull request #16260 from dylad/pr/riotboot_dfu/auto_dfu_alt
...
riotboot_dfu: select DFU_ALT automatically when invoking make flash-slotX
2021-04-06 20:27:18 +02:00
Karl Fessel
951fa14d70
sys/ztimer: rename required_pm_mode to block_pm_mode
2021-04-06 16:57:53 +02:00
Martine Lenders
e3f398e3d3
Merge pull request #16279 from brummer-simon/gnrc_tcp-fix_data_race_on_status
...
gnrc_tcp: fix data race on fsm status
2021-04-06 15:53:08 +02:00