Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

examples/gnrc_border_router: add BLE as downlink option #19321

Merged
merged 1 commit into from
Feb 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion examples/gnrc_border_router/Makefile.board.dep
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ ifeq (,$(filter native,$(BOARD)))
else ifeq (wifi,$(UPLINK))
ifneq (,$(filter esp32 esp8266,$(CPU)))
USEMODULE += esp_wifi
USEMODULE += esp_now
ifneq (ble, $(DOWNLINK))
USEMODULE += esp_now
endif
else
$(error Only esp32 and esp8266 are currently supported)
endif
endif
ifeq (ble, $(DOWNLINK))
USEMODULE += nimble_rpble
Copy link
Member

@OlegHahm OlegHahm Feb 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need RPL for that?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm I was under the impression that RPL gets selected by the application anyway, but turns out this is not the case.

endif
else
USEMODULE += netdev_tap
USEMODULE += socket_zep
Expand Down