Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
cc521fda
Unverified
Commit
cc521fda
authored
7 years ago
by
Koen Zandberg
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #8185 from miri64/examples/fix/opt-for-nib
examples: tests: optimize for NIB
parents
0d851866
2b543dda
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/gnrc_minimal/Makefile
+3
-2
3 additions, 2 deletions
examples/gnrc_minimal/Makefile
tests/gnrc_sock_dns/Makefile
+2
-1
2 additions, 1 deletion
tests/gnrc_sock_dns/Makefile
with
5 additions
and
3 deletions
examples/gnrc_minimal/Makefile
+
3
−
2
View file @
cc521fda
...
...
@@ -7,7 +7,7 @@ BOARD ?= native
# This has to be the absolute path to the RIOT base directory:
RIOTBASE
?=
$(
CURDIR
)
/../..
BOARD_INSUFFICIENT_MEMORY
:=
chronos msb-430 msb-430h
nucleo32-f031
BOARD_INSUFFICIENT_MEMORY
:=
nucleo32-f031
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
...
...
@@ -26,7 +26,8 @@ USEMODULE += gnrc_icmpv6_echo
USEMODULE
+=
prng_minstd
CFLAGS
+=
-DGNRC_PKTBUF_SIZE
=
512
-DGNRC_NETIF_IPV6_ADDRS_NUMOF
=
2
\
-DGNRC_NETIF_IPV6_GROUPS_NUMOF
=
2
-DGNRC_IPV6_NC_SIZE
=
1
-DGNRC_NETIF_IPV6_GROUPS_NUMOF
=
2
-DGNRC_IPV6_NIB_NUMOF
=
1
\
-DGNRC_IPV6_NIB_OFFL_NUMOF
=
1
# be able to configure at least one route
# Change this to 0 show compiler invocation lines by default:
QUIET
?=
1
...
...
This diff is collapsed.
Click to expand it.
tests/gnrc_sock_dns/Makefile
+
2
−
1
View file @
cc521fda
...
...
@@ -23,7 +23,8 @@ LOW_MEMORY_BOARDS := nucleo-f334 msb-430 msb-430h
ifeq
($(BOARD),$(filter $(BOARD),$(LOW_MEMORY_BOARDS)))
CFLAGS
+=
-DGNRC_PKTBUF_SIZE
=
512
-DGNRC_NETIF_IPV6_ADDRS_NUMOF
=
2
\
-DGNRC_NETIF_IPV6_GROUPS_NUMOF
=
2
-DGNRC_IPV6_NC_SIZE
=
1
-DGNRC_NETIF_IPV6_GROUPS_NUMOF
=
2
-DGNRC_IPV6_NIB_NUMOF
=
1
\
-DNRC_IPV6_NIB_OFFL_NUMOF
=
1
endif
include
$(RIOTBASE)/Makefile.include
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment