Skip to content

Commit

Permalink
!fixup examples/gnrc_border_router/Makefile.wifi.conf
Browse files Browse the repository at this point in the history
Co-Authored-By: Gunar Schorcht <gunar@schorcht.net>
  • Loading branch information
benpicco and gschorcht committed Mar 5, 2020
1 parent 3d28b72 commit 9f959c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions examples/gnrc_border_router/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ USE_SLIP ?= 0
# Optionally use esp_wifi & esp_now when using esp8266 or esp32
USE_WIFI ?= 0

# Set the SSID and password of your WiFi network here
WIFI_SSID ?= "Your_WiFi_name"
WIFI_PASS ?= "Your_secure_password"

# Include packages that pull up and auto-init the link layer.
# NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present
USEMODULE += gnrc_netdev_default
Expand Down
5 changes: 2 additions & 3 deletions examples/gnrc_border_router/Makefile.wifi.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# Set the SSID and password of your WiFi network here
CFLAGS += -DESP_WIFI_SSID=\"Your_WiFi_name\"
CFLAGS += -DESP_WIFI_PASS=\"Your_secure_password\"
CFLAGS += -DESP_WIFI_SSID=\"$(WIFI_SSID)\"
CFLAGS += -DESP_WIFI_PASS=\"$(WIFI_PASS)\"

0 comments on commit 9f959c3

Please sign in to comment.