1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #16299 from benpicco/examples/doc-fix

examples: small fixes
This commit is contained in:
chrysn 2021-04-11 08:14:51 +02:00 committed by GitHub
commit 101a9936ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

@ -42,7 +42,7 @@ USEMODULE += ps
#USEMODULE += sock_dns # include DNS client
#USEMODULE += gnrc_ipv6_nib_dns # include RDNSS option handling
# When using a WiFi uplink we should use DHCPv6
# When using a regular network uplink we should use DHCPv6
ifneq (,$(filter cdc-ecm wifi ethernet,$(UPLINK)))
USE_DHCPV6 ?= 1
else

View File

@ -98,11 +98,17 @@ TEST_ON_CI_BLACKLIST = all
include $(RIOTBASE)/Makefile.include
# allow to use large blocks to utilize large MTUs (802.15.4g, Ethernet, WiFi)
LARGE_BLOCKS ?= 0
ifeq (1, $(LARGE_BLOCKS))
CFLAGS += -DCONFIG_SUIT_COAP_BLOCKSIZE=COAP_BLOCKSIZE_1024
else
# lower pktbuf size to something sufficient for this application
# Set GNRC_PKTBUF_SIZE via CFLAGS if not being set via Kconfig.
ifndef CONFIG_GNRC_PKTBUF_SIZE
CFLAGS += -DCONFIG_GNRC_PKTBUF_SIZE=2000
endif
endif
.PHONY: host-tools

View File

@ -37,7 +37,7 @@ Table of contents:
- Install aiocoap from the source
$ pip3 install --user aiocoap>=0.4.1
$ pip3 install --user aiocoap[linkheader]>=0.4.1
See the [aiocoap installation instructions](https://aiocoap.readthedocs.io/en/latest/installation.html)
for more details.