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
664566ce
Commit
664566ce
authored
6 years ago
by
Gunar Schorcht
Committed by
Schorcht
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
cpu/esp8266: makefile support for esp_wifi
parent
04de1e75
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cpu/esp8266/Makefile
+4
-0
4 additions, 0 deletions
cpu/esp8266/Makefile
cpu/esp8266/Makefile.dep
+6
-0
6 additions, 0 deletions
cpu/esp8266/Makefile.dep
cpu/esp8266/Makefile.include
+6
-0
6 additions, 0 deletions
cpu/esp8266/Makefile.include
with
16 additions
and
0 deletions
cpu/esp8266/Makefile
+
4
−
0
View file @
664566ce
...
...
@@ -7,4 +7,8 @@ DIRS += periph
DIRS
+=
sdk
DIRS
+=
vendor
ifneq
(, $(filter esp_wifi, $(USEMODULE)))
DIRS
+=
esp-wifi
endif
include
$(RIOTBASE)/Makefile.base
This diff is collapsed.
Click to expand it.
cpu/esp8266/Makefile.dep
+
6
−
0
View file @
664566ce
...
...
@@ -10,6 +10,12 @@ ifneq (, $(filter esp_spiffs, $(USEMODULE)))
USEMODULE
+=
vfs
endif
ifneq
(, $(filter esp_wifi, $(USEMODULE)))
CFLAGS
+=
-DLWIP_OPEN_SRC
LINKFLAGS
+=
-Wl
,-wrap
=
ethernet_input
USEMODULE
+=
netdev_eth
endif
ifneq
(, $(filter lua, $(USEPKG)))
USEMODULE
+=
newlib_syscalls_default
USEMODULE
+=
xtimer
...
...
This diff is collapsed.
Click to expand it.
cpu/esp8266/Makefile.include
+
6
−
0
View file @
664566ce
...
...
@@ -33,6 +33,12 @@ ifneq (, $(filter esp_sw_timer, $(USEMODULE)))
USEMODULE
+=
esp_sdk
endif
ifneq
(, $(filter esp_now esp_wifi, $(USEMODULE)))
$(
eval
GNRC_NETIF_NUMOF
=
$(
shell
echo
$$(
(
$(
GNRC_NETIF_NUMOF
)
+1
)))
)
USEMODULE
+=
esp_sdk
USEMODULE
+=
netopt
endif
ifneq
(, $(filter esp_gdbstub, $(USEMODULE)))
USEMODULE
+=
esp_gdb
endif
...
...
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